1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
.tag0 { }
.tag10 { font-size: 140%; }
.tag20 { font-size: 150%; }
.tag30 { font-size: 160%; }
.tag40 { font-size: 170%; }
.tag50 { font-size: 180%; }
.tag60 { font-size: 190%; }
.tag70 { font-size: 200%; }
.tag80 { font-size: 210%; }
.tag90 { font-size: 220%; }
.tag100 { font-size: 230%; }
table.tags {
margin-left: 3em;
}
tr.tagLetter span {
font-size : 250%;
border: none;
display : block;
width: 1ex;
position: relative;
top: 0.80em;
left: -2ex;
}
ul.metaList {
margin: 0 0 1em 0;
padding: 0;
}
ul.metaList li {
margin: 0;
padding: 0;
list-style: square;
list-style-position: inside;
}
a.metaRemove {
color : #999 !important;
border: none;
}
a.metaRemove:hover, a.metaRemove:focus {
color : #2373A8 !important;
}
.addMeta a {
border: none;
}
.addMeta a:hover, .addMeta a:focus {
background: #fc0;
color: #000;
}
.addMeta a.metaGetMore {
font-weight: bold;
}
/* Auto Complete */
.ac_results {
padding: 0px;
border: 1px dotted #f90;
background-color: white;
overflow: hidden;
z-index: 99999;
}
.ac_results ul {
width: 100%;
list-style-position: outside;
list-style: none;
padding: 0;
margin: 0;
}
.ac_results li {
margin: 0px;
padding: 2px 5px;
cursor: default;
display: block;
/*
if width will be 100% horizontal scrollbar will apear
when scroll mode will be used
*/
/*width: 100%;*/
font: menu;
font-size: 1em;
/*
it is very important, if line-height not setted or setted
in relative units scroll will be broken in firefox
*/
line-height: 16px;
overflow: hidden;
}
.ac_loading {
background: transparent url('index.php?pf=tags/img/loader.gif') right center no-repeat;
}
.ac_odd {
background-color: #eee;
}
.ac_over {
background-color: #2373A8;
color: white;
}
#post_meta_input:focus {
-moz-box-sizing: content-box;
}
#tags-edit input[type=text] {
width: 11.5em;
}
.tag-actions form {
display: inline-block;
margin-right: 1.5em;
}
|