[ Index ] |
|
Code source de b2evolution 2.1.0-beta |
1 /* Basic styles */ 2 3 body { 4 padding: 0; 5 margin: 0; 6 } 7 8 9 blockquote { 10 border: 2px dotted #ccc; 11 background-color: #eee; 12 margin: 1em 2em; 13 padding: 0 1ex; 14 } 15 16 acronym, 17 abbr { 18 border-bottom: 1px dotted #000; 19 cursor: help; 20 } 21 22 del { 23 color: #999999; 24 } 25 ins { 26 color: #009999; 27 text-decoration: none; 28 } 29 code { 30 font-size: 107%; 31 } 32 33 34 .nobr, 35 .nowrap, 36 .line { 37 white-space: nowrap; 38 } 39 .left { 40 text-align: left; 41 } 42 .center { 43 text-align: center; 44 } 45 .right { 46 text-align: right; 47 } 48 .top { 49 vertical-align: top; 50 } 51 .floatleft { 52 float: left; 53 } 54 .floatright { 55 float: right; 56 } 57 .clear{ 58 clear: both; 59 } 60 .small { 61 font-size: 84%; 62 } 63 .small_details { 64 font-size: 84%; 65 color: #555; 66 } 67 .note, 68 .notes, 69 .dimmed { 70 font-size: 84%; 71 color: #999; 72 font-weight:normal; 73 } 74 .red { 75 color: #f00; 76 } 77 78 .shrinkwrap { 79 width: 1%; 80 white-space:nowrap; 81 text-align:center; 82 } 83 84 .filename { 85 font-family:monospace; 86 font-size:larger; 87 } 88 89 .block { 90 margin: 1ex; 91 white-space: nowrap; 92 } 93 94 a.discrete { 95 text-decoration: none; 96 } 97 a.selected { 98 font-weight: bold; 99 } 100 101 ul.expanded li, 102 ol.expanded li 103 { 104 margin-top: 2ex; 105 margin-bottom: 2ex; 106 } 107 108 109 /* 110 * Evo Toolbar 111 * Note: ther emay be some properties that seem overkill but the fact is we need to override 112 * any too general styles a skin may want to bring in for its own body/general display. 113 */ 114 div#evo_toolbar { 115 background-color: ThreeDFace; 116 color: ButtonText; 117 border-top: 1px solid ThreeDHighlight; 118 border-bottom: 1px solid ThreeDShadow; 119 text-align: left; 120 margin: 0; 121 /* font: menu; /* -- poorly supported */ 122 font-size: 11px; 123 font-family: "Microsoft sans serif", sans-serif, Arial, Helvetica; 124 125 } 126 div#evo_toolbar a { 127 border: 1px solid ThreeDFace; 128 color: ButtonText; 129 text-decoration: none; 130 padding: 2px 1ex; 131 } 132 div#evo_toolbar a:hover { 133 border-top-color: ThreeDHighlight; 134 border-left-color: ThreeDHighlight; 135 border-bottom-color: ThreeDShadow; 136 border-right-color: ThreeDShadow; 137 } 138 div#evo_toolbar .actions_left { 139 padding: 4px; 140 } 141 div#evo_toolbar .actions_right { 142 padding: 4px; 143 float: right; 144 } 145 146 div#evo_toolbar ul { 147 padding: 0; 148 margin: 0; 149 list-style: none; 150 } 151 div#evo_toolbar li { 152 display: inline; 153 } 154 div#evo_toolbar li ul { 155 position: absolute; 156 z-index: 100; 157 background-color: ThreeDFace; 158 border: 1px solid; 159 padding: 1px; 160 border-top-color: ThreeDHighlight; 161 border-left-color: ThreeDHighlight; 162 border-bottom-color: ThreeDShadow; 163 border-right-color: ThreeDShadow; 164 width: 25ex; /* prevent page wide dropdowns in IE6; nicer hover in IE7 */ 165 } 166 div#evo_toolbar li.menu_open ul { 167 display: block; 168 } 169 div#evo_toolbar li.menu_close ul { 170 display: none; 171 } 172 div#evo_toolbar li.menu_open:hover ul, 173 div#evo_toolbar li.menu_close:hover ul { 174 display: block; 175 } 176 div#evo_toolbar li ul li { 177 display: block; 178 padding: 0 4ex 0 0; 179 white-space: nowrap; 180 } 181 div#evo_toolbar li ul li a { 182 display: block; 183 padding: 4px 2ex; 184 border: none; 185 width: 100%; 186 } 187 div#evo_toolbar li ul li a:hover { 188 background-color: Highlight; 189 color: HighlightText; 190 } 191 div#evo_toolbar.evo_toolbar_safari li ul li a:hover { 192 background-color: #36d; 193 } 194 div#evo_toolbar li.separator { 195 padding: 0; 196 } 197 div#evo_toolbar hr { 198 display: block; 199 } 200 201 div#evo_toolbar .time { 202 margin: 0 1ex; 203 color: GrayText; 204 } 205 206 /* 207 {{{ Messages 208 */ 209 div.log_container, 210 div.action_messages { 211 margin:1ex; 212 } 213 div.log_container ul, 214 div.action_messages ul, 215 div.log_container ol, 216 div.action_messages ol { 217 list-style: square; 218 list-style-image:none; 219 margin:1ex 0; 220 padding-left:3ex; 221 } 222 div.log_container div, 223 div.action_messages div { 224 border:1px solid #6287c2; 225 background:#ddd; 226 margin:1ex auto; 227 padding:1ex; 228 } 229 div.log_container div.log_success, 230 div.action_messages div.log_success, 231 div.success { 232 border:1px solid #9d9; 233 background:#f2fbee; 234 color:#0c0; 235 } 236 div.log_container div.log_error, 237 div.action_messages div.log_error, 238 div.error { 239 border:1px solid #d99; 240 background:#fbf2ee; 241 color:#e00; 242 } 243 244 p.error, 245 span.error { 246 color: #e00; 247 font-weight:bold; 248 } 249 p.error { 250 margin: 1ex; 251 } 252 /* }}} */ 253 254 /* include errors, wrong params, deleted blog, etc... */ 255 div.skin_error { 256 border: 2px dotted #d99; 257 background:#fbf2ee; 258 color:#e00; 259 padding: 1em; 260 margin: 1em; 261 } 262 263 /* 264 * Debug output formatting: 265 */ 266 div.debug { 267 border: 2px solid #000; 268 padding: 1ex; 269 background-color: #ccc; 270 text-align: left; 271 color: #000; 272 } 273 274 div.debug h2, 275 div.debug h3, 276 div.debug h4 { 277 color:#0033FF; 278 } 279 280 div.debug code { 281 font-family: "Courier New", Courier, monospace; 282 font-size: 11px; 283 margin:1ex; 284 display:block; 285 } 286 287 div.debug div.query_info { 288 background-color: #fff; 289 font-size: 12px; 290 margin:1ex; 291 } 292 293 div.debug table { 294 border: 1px solid #000; 295 border-collapse:collapse; 296 font-family: "Courier New", Courier, monospace; 297 margin: 1ex; 298 } 299 div.debug table, 300 div.debug th, 301 div.debug td { 302 font-size:11px; 303 } 304 div.debug th { 305 background-color: #fff; 306 border: 1px solid #000; 307 padding: 2px; 308 white-space:nowrap; 309 } 310 div.debug th span.type { 311 font-weight: normal; 312 color: #999; 313 } 314 div.debug td { 315 background-color: #ddd; 316 border: 1px solid #000; 317 padding: 2px; 318 vertical-align:top; 319 white-space:nowrap; 320 } 321 div.debug td.odd { 322 background-color: #eee; 323 }
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Thu Nov 29 23:58:50 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |