[0] | 1 | /* |
---|
[1741] | 2 | # -- BEGIN LICENSE BLOCK -------------------------------------------------- |
---|
[0] | 3 | # This file is part of Dotclear 2. |
---|
[1179] | 4 | # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear |
---|
[0] | 5 | # Licensed under the GPL version 2.0 license. |
---|
[1741] | 6 | # See LICENSE file or http://www.gnu.org/licenses/old-licenses/gpl-2.0.html |
---|
| 7 | # -- END LICENSE BLOCK ---------------------------------------------------- |
---|
| 8 | LAYOUTS |
---|
| 9 | HTML TAGS |
---|
| 10 | FORMULAIRES |
---|
| 11 | BOUTONS |
---|
| 12 | MESSAGES |
---|
| 13 | ELEMENTS PRINCIPAUX |
---|
| 14 | REGLES SPECIFIQUES |
---|
| 15 | MEDIA QUERIES |
---|
[0] | 16 | */ |
---|
[1741] | 17 | /* --------------------------------------------------------------------------- |
---|
[2358] | 18 | START |
---|
| 19 | ---------------------------------------------------------------------------- */ |
---|
| 20 | html { |
---|
| 21 | font-size: 62.5%; |
---|
| 22 | } |
---|
| 23 | body { |
---|
| 24 | font-size: 12px; /* ie < 9 sucks */ |
---|
| 25 | font-size: 1.2rem; |
---|
| 26 | line-height: 1.5; |
---|
| 27 | font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; |
---|
| 28 | margin: 0; |
---|
| 29 | padding: 0; |
---|
| 30 | } |
---|
| 31 | /* --------------------------------------------------------------------------- |
---|
[1741] | 32 | LAYOUTS |
---|
| 33 | ---------------------------------------------------------------------------- */ |
---|
[2342] | 34 | *, *:before, *:after { |
---|
| 35 | -webkit-box-sizing: border-box; |
---|
| 36 | -moz-box-sizing: border-box; |
---|
| 37 | box-sizing: border-box; |
---|
[2366] | 38 | } |
---|
[513] | 39 | #header { |
---|
[1747] | 40 | background: #676e78; |
---|
[2005] | 41 | color: #FFF; |
---|
[1291] | 42 | border-bottom: 4px solid #A2CBE9; |
---|
[1329] | 43 | width: 100%; |
---|
[2005] | 44 | display: table; |
---|
[2456] | 45 | position: relative; |
---|
[500] | 46 | } |
---|
[2030] | 47 | #wrapper { |
---|
[1946] | 48 | position: relative; |
---|
[2005] | 49 | padding-top: 1.5em; |
---|
[1975] | 50 | float: left; |
---|
[500] | 51 | width: 100%; |
---|
[1975] | 52 | z-index: 10; |
---|
[2005] | 53 | background: #F7F7F7 url(bg_wrapper.png) repeat-y 15em; |
---|
[1741] | 54 | } |
---|
[1947] | 55 | .with-js #wrapper { |
---|
| 56 | padding-top: 0; |
---|
| 57 | } |
---|
[500] | 58 | #main { |
---|
| 59 | width: 100%; |
---|
| 60 | float: right; |
---|
[2002] | 61 | margin-left: -14em; |
---|
[500] | 62 | margin-top: 0; |
---|
[1741] | 63 | } |
---|
[500] | 64 | #content { |
---|
[2002] | 65 | margin: 0 0 0 14em; |
---|
[2022] | 66 | padding: .5em 1.5em .75em 2.5em; |
---|
[1310] | 67 | background: #fff; |
---|
[1741] | 68 | } |
---|
[500] | 69 | #main-menu { |
---|
[1975] | 70 | width: 14em; |
---|
[500] | 71 | float: left; |
---|
[2301] | 72 | margin: 0; |
---|
[1600] | 73 | padding-top: .5em; |
---|
[1309] | 74 | padding-bottom: 1em; |
---|
[1869] | 75 | overflow: hidden; |
---|
[1975] | 76 | background: #f7f7f7; |
---|
[1741] | 77 | } |
---|
[500] | 78 | #footer { |
---|
| 79 | clear: both; |
---|
[1975] | 80 | position: relative; |
---|
[1574] | 81 | padding: .5em 1em .5em 0; |
---|
[1140] | 82 | text-align: right; |
---|
[1574] | 83 | border-top: 1px solid #ccc; |
---|
[1862] | 84 | background-color: #fff; |
---|
[1741] | 85 | } |
---|
[1862] | 86 | /* to hide main-menu */ |
---|
[1861] | 87 | #collapser { |
---|
[1946] | 88 | position: absolute; |
---|
| 89 | top: 0; |
---|
[1975] | 90 | left: 14em; |
---|
[2366] | 91 | width: 15px; |
---|
[1946] | 92 | height: 100%; |
---|
| 93 | overflow: hidden; |
---|
[1862] | 94 | display: block; |
---|
[1934] | 95 | background: #f3f3f3 url(../images/collapser-hide.png) no-repeat center bottom; |
---|
[1946] | 96 | border-right: double #dfdfdf; |
---|
| 97 | z-index: 1; |
---|
[1862] | 98 | } |
---|
[1867] | 99 | .expand-mm { |
---|
[2301] | 100 | display: none; |
---|
[1867] | 101 | } |
---|
[1862] | 102 | /* if main-menu is hidden */ |
---|
| 103 | #wrapper.hide-mm { |
---|
| 104 | background: #fff; |
---|
[1861] | 105 | } |
---|
| 106 | .hide-mm #main { |
---|
| 107 | margin-left: 0; |
---|
| 108 | } |
---|
| 109 | .hide-mm #content { |
---|
[1862] | 110 | margin-left: 1em; |
---|
[1861] | 111 | } |
---|
| 112 | .hide-mm #main-menu { |
---|
| 113 | display: none; |
---|
| 114 | } |
---|
[1862] | 115 | .hide-mm #collapser { |
---|
[1946] | 116 | left: 0; |
---|
[1934] | 117 | background: #e3e3e3 url(../images/collapser-show.png) no-repeat center bottom; |
---|
[1867] | 118 | } |
---|
| 119 | .hide-mm .collapse-mm { |
---|
| 120 | display: none; |
---|
| 121 | } |
---|
| 122 | .hide-mm .expand-mm { |
---|
| 123 | display: block; |
---|
[1862] | 124 | } |
---|
[1741] | 125 | /* -------------------------------------------------------------- layout: two-cols */ |
---|
| 126 | .two-cols { |
---|
| 127 | position: static; |
---|
| 128 | } |
---|
[2301] | 129 | .two-cols .col { |
---|
| 130 | width: 48%; |
---|
| 131 | margin-left: 2%; |
---|
| 132 | float: left; |
---|
| 133 | } |
---|
| 134 | .two-cols .col70 { |
---|
| 135 | width: 68%; |
---|
| 136 | margin-left: 0; |
---|
| 137 | float: left; |
---|
| 138 | } |
---|
| 139 | .col30 { |
---|
| 140 | width: 28%; |
---|
| 141 | margin-left: 2%; |
---|
| 142 | float: left; |
---|
| 143 | } |
---|
| 144 | .two-cols .col:first-child, |
---|
[2358] | 145 | .two-cols .col30.first-col { |
---|
[2301] | 146 | margin-left: 0; |
---|
| 147 | margin-right: 2%; |
---|
| 148 | } |
---|
| 149 | .two-cols .col:last-child, |
---|
[2358] | 150 | .two-cols .col70.last-col { |
---|
[2301] | 151 | margin-left: 2%; |
---|
| 152 | margin-right: 0; |
---|
| 153 | } |
---|
| 154 | .two-cols table { |
---|
| 155 | width: 90%; |
---|
| 156 | } |
---|
[1749] | 157 | /* -------------------------------------------------------------- layout: three-cols */ |
---|
| 158 | .three-cols { |
---|
| 159 | position: static; |
---|
| 160 | } |
---|
[2301] | 161 | .three-cols .col { |
---|
| 162 | width: 32.3%; |
---|
| 163 | float: left; |
---|
| 164 | margin-left: 1%; |
---|
| 165 | } |
---|
| 166 | .three-cols .col:first-child { |
---|
| 167 | margin-left: 0; |
---|
| 168 | } |
---|
[2308] | 169 | /* ------------------------------------------------- layout: optionnal one/two/three-boxes */ |
---|
[1741] | 170 | .one-box { |
---|
[1749] | 171 | text-align: justify; |
---|
[1741] | 172 | } |
---|
[2308] | 173 | .two-boxes { |
---|
[2342] | 174 | width: 48.5%; |
---|
[2308] | 175 | } |
---|
| 176 | .three-boxes { |
---|
| 177 | width: 30%; |
---|
| 178 | } |
---|
| 179 | .two-boxes, .three-boxes { |
---|
[2152] | 180 | display: inline-block; |
---|
| 181 | vertical-align: top; |
---|
| 182 | margin: 0 1.5% 1em; |
---|
[2179] | 183 | text-align: left; |
---|
[2152] | 184 | } |
---|
[2352] | 185 | .two-boxes:nth-of-type(odd), .three-boxes:nth-of-type(3n+1) { |
---|
| 186 | margin-left: 0; |
---|
| 187 | } |
---|
| 188 | .two-boxes:nth-of-type(even), .three-boxes:nth-of-type(3n) { |
---|
| 189 | margin-right: 0; |
---|
| 190 | } |
---|
[1741] | 191 | /* ---------------------------------------------------------------- layout: popups */ |
---|
[2006] | 192 | .popup h1 { |
---|
| 193 | display: block; |
---|
[1311] | 194 | width: 100%; |
---|
[2006] | 195 | margin: 0; |
---|
| 196 | background: #676e78; |
---|
| 197 | font-size: 1.5em; |
---|
| 198 | text-indent: 1em; |
---|
| 199 | line-height: 1.5em; |
---|
| 200 | font-weight: normal; |
---|
| 201 | color: #fff; |
---|
| 202 | } |
---|
| 203 | .popup #wrapper { |
---|
| 204 | display: block; |
---|
| 205 | float: none; |
---|
| 206 | width: 100%; |
---|
| 207 | margin: 0; |
---|
| 208 | padding: 0; |
---|
| 209 | background-position: 0 0; |
---|
| 210 | } |
---|
| 211 | .popup #main { |
---|
| 212 | margin: 0; |
---|
[1311] | 213 | padding: 0; |
---|
[1760] | 214 | } |
---|
[2006] | 215 | .popup #content { |
---|
[1311] | 216 | margin: 0; |
---|
[2006] | 217 | padding: 1em; |
---|
[1760] | 218 | } |
---|
[2006] | 219 | .popup #content h2 { |
---|
| 220 | margin: 0 0 1em 0; |
---|
| 221 | padding: 0; |
---|
[1760] | 222 | } |
---|
[2006] | 223 | .popup #footer p { |
---|
| 224 | border: none; |
---|
| 225 | } |
---|
[1760] | 226 | /* -------------------------------------------------------- layout: classes de complément */ |
---|
[1741] | 227 | .constrained { |
---|
[3] | 228 | margin: 0; |
---|
| 229 | padding: 0; |
---|
[1741] | 230 | border: none; |
---|
| 231 | background: transparent; |
---|
| 232 | } |
---|
[1571] | 233 | .table { |
---|
| 234 | display: table; |
---|
[1741] | 235 | } |
---|
[1571] | 236 | .cell { |
---|
| 237 | display: table-cell; |
---|
[1741] | 238 | vertical-align: top; |
---|
[500] | 239 | } |
---|
| 240 | .clear { |
---|
| 241 | clear: both; |
---|
[1741] | 242 | } |
---|
[500] | 243 | .lclear { |
---|
| 244 | clear: left; |
---|
[1741] | 245 | } |
---|
| 246 | .clearer { |
---|
[500] | 247 | height: 1px; |
---|
| 248 | font-size: 1px; |
---|
[1741] | 249 | } |
---|
| 250 | /* Micro clearfix thx to Nicolas Gallagher */ |
---|
| 251 | .clearfix:before, .clearfix:after { |
---|
[2301] | 252 | content: " "; |
---|
[1741] | 253 | display: table; |
---|
| 254 | } |
---|
| 255 | .clearfix:after { |
---|
| 256 | clear: both; |
---|
| 257 | } |
---|
[500] | 258 | .frame-shrink { |
---|
[1760] | 259 | border: 1px solid #676e78; |
---|
[500] | 260 | padding: 0.5em; |
---|
| 261 | margin-bottom: 1em; |
---|
| 262 | height: 120px; |
---|
| 263 | overflow: auto; |
---|
[1741] | 264 | } |
---|
[2308] | 265 | .box { |
---|
| 266 | display: inline-block; |
---|
| 267 | vertical-align: top; |
---|
[2342] | 268 | margin: 0 10px 10px; |
---|
[2308] | 269 | text-align: left; |
---|
| 270 | } |
---|
| 271 | .box.small { |
---|
[2465] | 272 | width: 312px; |
---|
[2308] | 273 | } |
---|
| 274 | .box.medium { |
---|
[2465] | 275 | width: 644px; |
---|
[2308] | 276 | } |
---|
| 277 | .box.large { |
---|
| 278 | width: 100%; |
---|
| 279 | } |
---|
| 280 | .odd { |
---|
| 281 | margin-left: 0; |
---|
| 282 | } |
---|
| 283 | .even { |
---|
| 284 | margin-right: 0; |
---|
| 285 | } |
---|
[1741] | 286 | /* --------------------------------------------------------------------------- |
---|
| 287 | HTML TAGS |
---|
| 288 | ---------------------------------------------------------------------------- */ |
---|
| 289 | body { |
---|
| 290 | color: #333; |
---|
[3] | 291 | background: #fff; |
---|
[1741] | 292 | } |
---|
| 293 | /* ------------------------------------------------------------------ titres */ |
---|
| 294 | h1, h2, h3, .as_h3, h4, .as_h4, h5, h6 { |
---|
| 295 | margin-top: 0; |
---|
| 296 | margin-bottom: 1em; |
---|
| 297 | } |
---|
| 298 | h2 { |
---|
[1760] | 299 | color: #676e78; |
---|
[1979] | 300 | font-size: 1.5em; |
---|
[1741] | 301 | padding: 0 0 1.5em; |
---|
| 302 | font-weight: normal; |
---|
[2456] | 303 | line-height: 1.25; |
---|
[1741] | 304 | } |
---|
[2308] | 305 | /* fil d'ariane */ |
---|
[2301] | 306 | #content > h2 { |
---|
| 307 | padding: 0 1em .5em 1em; |
---|
[2456] | 308 | margin: 0 -1em 1em -1em; |
---|
[2301] | 309 | background: #fff url(bg_h2.png) repeat-x center bottom; |
---|
| 310 | } |
---|
| 311 | h2 a:link, h2 a:visited { |
---|
| 312 | color: #676e78; |
---|
| 313 | border-color: #000; |
---|
| 314 | } |
---|
[2308] | 315 | /* page courante dans le fil d'ariane */ |
---|
[2301] | 316 | .page-title { |
---|
| 317 | color: #d30e60; |
---|
| 318 | } |
---|
| 319 | .page-title img { |
---|
| 320 | padding-left: .5em; |
---|
| 321 | vertical-align: middle; |
---|
| 322 | } |
---|
[2308] | 323 | /* autres titres */ |
---|
[1741] | 324 | h3, .as_h3 { |
---|
[1747] | 325 | margin-top: 1em; |
---|
[1760] | 326 | color: #D33800; |
---|
| 327 | font-weight: normal; |
---|
[1873] | 328 | font-size: 1.34em; |
---|
[1741] | 329 | } |
---|
[2301] | 330 | #main-menu h3 { |
---|
| 331 | font-weight: bold; |
---|
| 332 | } |
---|
[1788] | 333 | h4, .as_h4 { |
---|
[2366] | 334 | font-size: 1.16em; |
---|
[1747] | 335 | color: #676e78; |
---|
[1741] | 336 | } |
---|
[2301] | 337 | .fieldset h3, .fieldset h4, .pretty-title { |
---|
| 338 | color: #D33800; |
---|
| 339 | font-size: 1em; |
---|
| 340 | font-weight: bold; |
---|
| 341 | } |
---|
| 342 | .fieldset h3 { |
---|
| 343 | font-size: 1.17em; |
---|
| 344 | } |
---|
| 345 | .fieldset h3.smart-title, .fieldset h4.smart-title, .smart-title { |
---|
| 346 | font-size: 1em; |
---|
| 347 | text-transform: uppercase; |
---|
| 348 | font-weight: bold; |
---|
| 349 | color: #333; |
---|
| 350 | text-shadow: 0 1px 0 rgba(200, 200, 200, 0.6) |
---|
| 351 | } |
---|
[1741] | 352 | h5 { |
---|
[2366] | 353 | font-size: 1em; |
---|
[1760] | 354 | font-weight: bold; |
---|
[1747] | 355 | color: #676e78; |
---|
[1741] | 356 | } |
---|
[2301] | 357 | #entry-sidebar h5 { |
---|
| 358 | font-weight: normal; |
---|
| 359 | color: #333; |
---|
| 360 | } |
---|
| 361 | .entry-status img.img_select_option { |
---|
| 362 | padding-left: 4px; |
---|
| 363 | vertical-align: text-top; |
---|
| 364 | } |
---|
| 365 | h4 label, h5 label { |
---|
| 366 | color: #333; |
---|
| 367 | } |
---|
[1787] | 368 | h2:first-child, h3:first-child, h4:first-child, h5:first-child, ul:first-child, p:first-child { |
---|
| 369 | margin-top: 0; |
---|
| 370 | } |
---|
[1741] | 371 | /* ---------------------------------------------------------------- tableaux */ |
---|
[2308] | 372 | /* Pour autoriser le scroll sur les petites largeurs |
---|
| 373 | envelopper les tableaux dans une div.table-outer */ |
---|
[2002] | 374 | .table-outer { |
---|
| 375 | width: 100%; |
---|
| 376 | overflow: auto; |
---|
| 377 | } |
---|
[500] | 378 | table { |
---|
[2366] | 379 | font-size: 1em; |
---|
[500] | 380 | border-collapse: collapse; |
---|
| 381 | margin: 0 0 1em 0; |
---|
[2002] | 382 | width: 100%; |
---|
[1741] | 383 | } |
---|
[536] | 384 | caption { |
---|
| 385 | color: #333; |
---|
| 386 | font-weight: bold; |
---|
| 387 | text-align: left; |
---|
| 388 | margin-bottom: .5em; |
---|
[1741] | 389 | } |
---|
[500] | 390 | th { |
---|
[1465] | 391 | border-width: 1px 0 1px 0; |
---|
| 392 | border-style: solid; |
---|
[2300] | 393 | border-color: #dfdfdf; |
---|
[2068] | 394 | background: #eef1ec; |
---|
[1727] | 395 | padding: .4em 1em .4em .5em; |
---|
[1465] | 396 | vertical-align: top; |
---|
[500] | 397 | text-align: left; |
---|
[1741] | 398 | } |
---|
| 399 | td { |
---|
[1452] | 400 | border-width: 0 0 1px 0; |
---|
[1741] | 401 | border-style: solid; |
---|
| 402 | border-color: #e3e3e3; |
---|
| 403 | padding: .4em 1em .4em .5em; |
---|
| 404 | vertical-align: top; |
---|
| 405 | } |
---|
| 406 | /* ---------------------------------------------------------- autres balises */ |
---|
| 407 | p { |
---|
[3] | 408 | margin: 0 0 1em 0; |
---|
[1741] | 409 | } |
---|
[0] | 410 | hr { |
---|
[3] | 411 | height: 1px; |
---|
[1741] | 412 | border-width: 1px 0 0; |
---|
[2300] | 413 | border-color: #dfdfdf; |
---|
| 414 | background: #dfdfdf; |
---|
[3] | 415 | border-style: solid; |
---|
[1741] | 416 | } |
---|
| 417 | hr.clearer { |
---|
| 418 | clear: both; |
---|
| 419 | } |
---|
[2110] | 420 | pre, code, #debug { |
---|
[0] | 421 | font: 100% "Andale Mono","Courier New",monospace; |
---|
[1741] | 422 | } |
---|
[2096] | 423 | code { |
---|
[2300] | 424 | background: #fefacd; |
---|
[2096] | 425 | } |
---|
[0] | 426 | pre { |
---|
| 427 | white-space: pre; |
---|
| 428 | white-space: -moz-pre-wrap; |
---|
| 429 | white-space: pre-wrap; |
---|
| 430 | white-space: pre-line; |
---|
| 431 | word-wrap: break-word; |
---|
[1741] | 432 | } |
---|
[12] | 433 | abbr { |
---|
| 434 | cursor: help; |
---|
[1741] | 435 | } |
---|
[1801] | 436 | input, textarea, select, option, optgroup, legend,label { |
---|
| 437 | font-size: 1em; |
---|
| 438 | } |
---|
[1741] | 439 | /* ------------------------------------------------------------------ liens */ |
---|
| 440 | a, a:link, a:visited { |
---|
| 441 | color: #2373A8; |
---|
| 442 | text-decoration: none; |
---|
| 443 | border-bottom: 1px dotted #999; |
---|
[2514] | 444 | background-color: inherit; |
---|
[2519] | 445 | outline: 0; |
---|
[2514] | 446 | } |
---|
| 447 | a:hover, a:active { |
---|
[1994] | 448 | border-bottom-style: solid; |
---|
[1741] | 449 | } |
---|
| 450 | a img, a:link img, a:visited img { |
---|
[2301] | 451 | border: none; |
---|
[2514] | 452 | background: inherit; |
---|
[1741] | 453 | } |
---|
[1868] | 454 | h1 a:link, h1 a:visited { |
---|
[2301] | 455 | border: none; |
---|
[1868] | 456 | } |
---|
[2152] | 457 | .discrete a { |
---|
| 458 | color: #333; |
---|
| 459 | } |
---|
[2514] | 460 | a:link { |
---|
| 461 | transition: .5s; |
---|
| 462 | } |
---|
| 463 | a:focus, a:focus img { |
---|
[2518] | 464 | outline: 2px solid #bee74b; |
---|
[2514] | 465 | border-bottom: none; |
---|
| 466 | text-decoration: none; |
---|
| 467 | } |
---|
[1741] | 468 | /* ---------------------------------------------------------------------------- |
---|
| 469 | FORMULAIRES |
---|
| 470 | ---------------------------------------------------------------------------- */ |
---|
[2566] | 471 | input[type=text], input[type=password], input[type=submit], |
---|
[2308] | 472 | input[type=button], input[type=reset], a.button, button, textarea, select, legend { |
---|
[2566] | 473 | border-radius: 3px; |
---|
[2430] | 474 | max-width: 100%; |
---|
[2308] | 475 | } |
---|
[500] | 476 | form { |
---|
| 477 | display: block; |
---|
| 478 | margin: 0; |
---|
| 479 | padding: 0; |
---|
[1741] | 480 | } |
---|
[1464] | 481 | fieldset { |
---|
[500] | 482 | display: block; |
---|
[1801] | 483 | margin: 1em 0; |
---|
[500] | 484 | padding: 1em 0.5em; |
---|
| 485 | border-width: 1px 0; |
---|
| 486 | border-style: solid; |
---|
| 487 | border-color: #ccc; |
---|
[1727] | 488 | background: #f7f7f7; |
---|
[1741] | 489 | } |
---|
[1801] | 490 | input[type=text], textarea { |
---|
[1741] | 491 | font: 100% "DejaVu Sans","Lucida Grande","Lucida Sans Unicode",Arial,sans-serif; |
---|
| 492 | } |
---|
[500] | 493 | legend { |
---|
| 494 | padding: 0.2em 0.6em; |
---|
| 495 | border-width: 1px; |
---|
| 496 | border-style: solid; |
---|
[1760] | 497 | border-color: #676e78; |
---|
[1424] | 498 | background: #fff; |
---|
[500] | 499 | margin-bottom: 0.5em; |
---|
[1741] | 500 | } |
---|
[2532] | 501 | label .maximal, textarea.maximal, input.maximal, select.maximal { |
---|
[1741] | 502 | width: 99%; |
---|
| 503 | } |
---|
[1727] | 504 | input[type=text], input[type=password], textarea, select { |
---|
[2300] | 505 | background: #fcfcfc; |
---|
[500] | 506 | color: #000; |
---|
[1727] | 507 | border-width: 1px; |
---|
[500] | 508 | border-style: solid; |
---|
[2300] | 509 | border-color: #dfdfdf; |
---|
| 510 | box-shadow: 1px 1px 2px #f3f3f3 inset; |
---|
[2301] | 511 | padding: 3px; |
---|
[2046] | 512 | vertical-align: top; |
---|
[1741] | 513 | } |
---|
[2301] | 514 | input:focus, textarea:focus, select:focus { |
---|
| 515 | border-color: #9bca1c; |
---|
| 516 | } |
---|
| 517 | textarea { |
---|
| 518 | padding: 2px 0; |
---|
| 519 | } |
---|
| 520 | textarea.maximal { |
---|
| 521 | resize: vertical; |
---|
| 522 | } |
---|
| 523 | .area textarea { |
---|
| 524 | display: block; |
---|
| 525 | width: 100%; |
---|
| 526 | resize: vertical; |
---|
| 527 | } |
---|
| 528 | select { |
---|
| 529 | padding: 2px 0; |
---|
| 530 | vertical-align: middle; |
---|
| 531 | } |
---|
| 532 | select.l10n option { |
---|
| 533 | padding-left: 16px; |
---|
| 534 | } |
---|
| 535 | option.avail10n { |
---|
| 536 | background: transparent url(../images/check-on.png) no-repeat 0 50%; |
---|
| 537 | } |
---|
| 538 | option.sub-option1 { |
---|
| 539 | margin-left: .5em; |
---|
| 540 | } |
---|
| 541 | option.sub-option2 { |
---|
| 542 | margin-left: 1.5em; |
---|
| 543 | } |
---|
| 544 | option.sub-option3 { |
---|
| 545 | margin-left: 2.5em; |
---|
| 546 | } |
---|
| 547 | option.sub-option4 { |
---|
| 548 | margin-left: 3.5em; |
---|
| 549 | } |
---|
| 550 | option.sub-option5 { |
---|
| 551 | margin-left: 4.5em; |
---|
| 552 | } |
---|
| 553 | option.sub-option6 { |
---|
| 554 | margin-left: 5.5em; |
---|
| 555 | } |
---|
| 556 | option.sub-option7 { |
---|
| 557 | margin-left: 6.5em; |
---|
| 558 | } |
---|
| 559 | option.sub-option8 { |
---|
| 560 | margin-left: 7.5em; |
---|
| 561 | } |
---|
| 562 | option.sub-option1:before, option.sub-option2:before, option.sub-option3:before, option.sub-option4:before, |
---|
| 563 | option.sub-option5:before, option.sub-option6:before, option.sub-option7:before, option.sub-option8:before { |
---|
| 564 | content: "\002022\0000a0"; |
---|
| 565 | } |
---|
| 566 | input.invalid, textarea.invalid, select.invalid { |
---|
| 567 | border: 1px solid red; |
---|
| 568 | background: #FFBABA; |
---|
| 569 | color: #900; |
---|
| 570 | box-shadow: 0 0 0 3px rgba(218, 62, 90, 0.3); |
---|
| 571 | } |
---|
| 572 | input[type=text], input[type=password], textarea { |
---|
| 573 | margin-right: .3em; |
---|
| 574 | } |
---|
| 575 | input[type=checkbox], input[type=radio], input[type=file] { |
---|
| 576 | border: none; |
---|
| 577 | margin: 0 .33em 0 0; |
---|
| 578 | padding: 0; |
---|
| 579 | background: transparent; |
---|
| 580 | } |
---|
| 581 | input[type=file] { |
---|
| 582 | margin-top: .3em; |
---|
| 583 | margin-bottom: .3em; |
---|
| 584 | } |
---|
[1741] | 585 | optgroup { |
---|
| 586 | font-weight: bold; |
---|
| 587 | font-style: normal; |
---|
| 588 | } |
---|
| 589 | option { |
---|
| 590 | font-weight: normal; |
---|
| 591 | } |
---|
| 592 | label, label span { |
---|
[500] | 593 | display: block; |
---|
[1741] | 594 | } |
---|
[2301] | 595 | label.ib, input.ib { |
---|
| 596 | display: inline-block; |
---|
| 597 | } |
---|
| 598 | label.classic { |
---|
| 599 | display: inline; |
---|
| 600 | } |
---|
| 601 | label.classic input, label span input, label.classic select, label span select { |
---|
| 602 | display: inline; |
---|
| 603 | } |
---|
| 604 | label.required { |
---|
| 605 | font-weight: bold; |
---|
| 606 | } |
---|
| 607 | label.required abbr { |
---|
| 608 | color: #900; |
---|
| 609 | font-size: 1.3em; |
---|
| 610 | } |
---|
[2390] | 611 | label.bold { |
---|
| 612 | text-transform: uppercase; |
---|
| 613 | font-weight: bold; |
---|
| 614 | margin-top: 2em; |
---|
| 615 | } |
---|
[2301] | 616 | label.area, p.area { |
---|
| 617 | width: inherit !important; |
---|
| 618 | } |
---|
[1741] | 619 | p.field { |
---|
| 620 | position: relative; |
---|
| 621 | } |
---|
[2301] | 622 | p.field label { |
---|
| 623 | display: inline-block; |
---|
| 624 | width: 14em; |
---|
| 625 | } |
---|
| 626 | p.field.wide label { |
---|
| 627 | width: 21em; |
---|
| 628 | } |
---|
| 629 | p.field input, p.field select { |
---|
| 630 | display: inline-block; |
---|
| 631 | } |
---|
[1741] | 632 | .form-note { |
---|
| 633 | font-style: italic; |
---|
| 634 | font-weight: normal; |
---|
[1760] | 635 | color: #676e78; |
---|
[1741] | 636 | } |
---|
[2301] | 637 | p.form-note { |
---|
| 638 | margin-top: -.7em; |
---|
| 639 | } |
---|
| 640 | span.form-note { |
---|
| 641 | text-transform: none; |
---|
| 642 | } |
---|
[1741] | 643 | /* ---------------------------------------------------------------------------- |
---|
| 644 | BOUTONS |
---|
| 645 | ---------------------------------------------------------------------------- */ |
---|
[1767] | 646 | /* Removes inner padding and border in FF3+ - Knacss */ |
---|
| 647 | button::-moz-focus-inner, |
---|
| 648 | input[type=button]::-moz-focus-inner, |
---|
| 649 | input[type=reset]::-moz-focus-inner, |
---|
| 650 | input[type=submit]::-moz-focus-inner { |
---|
| 651 | border: 0; |
---|
| 652 | padding: 0; |
---|
| 653 | } |
---|
| 654 | /* tous les boutons */ |
---|
| 655 | button, |
---|
| 656 | a.button, |
---|
| 657 | input[type=button], |
---|
| 658 | input[type=reset], |
---|
| 659 | input[type=submit] { |
---|
| 660 | border: 1px solid #ccc; |
---|
[1872] | 661 | font-family: "DejaVu Sans","Lucida Grande","Lucida Sans Unicode",Arial,sans-serif; |
---|
[2046] | 662 | padding: 3px 10px; |
---|
[1767] | 663 | line-height: normal !important; |
---|
[1741] | 664 | display: inline-block; |
---|
[1872] | 665 | font-size: 100%; |
---|
[1741] | 666 | text-align: center; |
---|
| 667 | text-decoration: none; |
---|
[1767] | 668 | cursor: pointer; |
---|
[2281] | 669 | position: relative; |
---|
[2301] | 670 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); |
---|
| 671 | border-style: solid; |
---|
| 672 | border-width: 1px; |
---|
[1767] | 673 | } |
---|
| 674 | button, |
---|
| 675 | input[type=button], |
---|
| 676 | input[type=reset], |
---|
| 677 | input[type=submit] { |
---|
| 678 | -webkit-appearance: button; |
---|
| 679 | } |
---|
[2301] | 680 | /* validation */ |
---|
[1852] | 681 | input[type=submit], a.button.submit, input.button.start { |
---|
[1741] | 682 | color: #fff; |
---|
[2301] | 683 | background-color: #25A6E1; |
---|
| 684 | background-image: -webkit-gradient(linear,left top,left bottom, from(#25A6E1), to(#188BC0)); |
---|
[2308] | 685 | background-image: linear-gradient(#25A6E1,#188BC0); |
---|
[2281] | 686 | border-color: #25A6E1; |
---|
| 687 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); |
---|
[1741] | 688 | } |
---|
[2301] | 689 | input[type=submit]:hover, input[type=submit]:focus, |
---|
[1852] | 690 | input.button.start:hover, input.button.start:focus, |
---|
[1760] | 691 | a.button.submit:hover, a.button.submit:focus { |
---|
[2301] | 692 | background-color: #188BC0; |
---|
| 693 | background-image: -webkit-gradient(linear,left top,left bottom, from(#188BC0),to(#25A6E1)); |
---|
| 694 | background-image: linear-gradient(#188BC0,#25A6E1); |
---|
| 695 | border-color: #188BC0; |
---|
| 696 | } |
---|
[1798] | 697 | /* suppression, reset, "neutres" fond gris */ |
---|
| 698 | button, input[type=button], input.button, |
---|
[2566] | 699 | input[type=reset], input[type=submit].reset, input.reset, |
---|
[1798] | 700 | input[type=submit].delete, input.delete, |
---|
[2308] | 701 | a.button, a.button.delete, a.button.reset { |
---|
[1741] | 702 | color: #000; |
---|
[2301] | 703 | background-color: #EAEAEA; |
---|
[2300] | 704 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#EAEAEA)); |
---|
[2301] | 705 | background-image: linear-gradient(#f9f9f9,#EAEAEA); |
---|
| 706 | background-repeat: repeat-x; |
---|
| 707 | border-color: #dfdfdf #dfdfdf #C5C5C5; |
---|
| 708 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9); |
---|
| 709 | } |
---|
| 710 | button:hover, input[type=button]:hover, input.button:hover, |
---|
[1798] | 711 | button:focus, input[type=button]:focus, input.button:focus, |
---|
[2566] | 712 | input[type=reset]:hover, input[type=submit].reset:hover, input.reset:hover, |
---|
| 713 | input[type=reset]:focus, input[type=submit].reset:focus, input.reset:focus, |
---|
[1798] | 714 | input[type=submit].delete:hover, input.delete:hover, |
---|
| 715 | input[type=submit].delete:focus, input.delete:focus, |
---|
| 716 | a.button.delete:hover, a.button.reset:hover, a.button:hover, |
---|
| 717 | a.button.delete:focus, a.button.reset:focus, a.button:focus { |
---|
[2301] | 718 | background-color: #DADADA; |
---|
| 719 | background-image: -webkit-gradient( linear, left top, left bottom, from(#EAEAEA), to(#DADADA)); |
---|
| 720 | background-image: linear-gradient(#EAEAEA, #DADADA); |
---|
| 721 | background-repeat: repeat-x; |
---|
| 722 | border-color: #CCCCCC #CCCCCC #B5B5B5; |
---|
| 723 | } |
---|
| 724 | /* suppression */ |
---|
| 725 | input[type=submit].delete, input.delete, a.button.delete { |
---|
| 726 | color: #900; |
---|
| 727 | } |
---|
| 728 | input[type=submit].delete:hover, input.delete:hover, a.button.delete:hover, |
---|
[1798] | 729 | input[type=submit].delete:focus, input.delete:focus, a.button.delete:focus { |
---|
[2301] | 730 | color: #FFFFFF; |
---|
| 731 | background-color: #B33630; |
---|
| 732 | background-image: -webkit-gradient( linear, left top, left bottom, from(#DC5F59), to(#B33630)); |
---|
| 733 | background-image: linear-gradient(#DC5F59, #B33630); |
---|
| 734 | background-repeat: repeat-x; |
---|
| 735 | border-color: #CD504A; |
---|
| 736 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3); |
---|
| 737 | } |
---|
| 738 | #info-box a.button { |
---|
| 739 | padding: 0 .5em; |
---|
| 740 | margin-left: 2em; |
---|
| 741 | } |
---|
[1741] | 742 | .button.add { |
---|
[2281] | 743 | color: #000; |
---|
[2301] | 744 | background-color: #bee74b; |
---|
| 745 | background-image: -webkit-gradient(linear, left top, left bottom, from(#bee74b), to(#9BCA1C)); |
---|
| 746 | background-image: linear-gradient(#bee74b, #9BCA1C); |
---|
[2300] | 747 | border-color: #bee74b; |
---|
[2301] | 748 | padding: .33em 1.33em .5em; |
---|
[1741] | 749 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6); |
---|
[954] | 750 | font-weight: normal; |
---|
[2366] | 751 | font-size: 1.16em; |
---|
[1741] | 752 | } |
---|
[2301] | 753 | .button.add:hover, .button.add:active, .button.add:focus { |
---|
| 754 | background-color: #9BCA1C; |
---|
| 755 | background-image: -webkit-gradient(linear, left top, left bottom, from(#9BCA1C), to(#bee74b)); |
---|
[2465] | 756 | background-image: linear-gradient(#9BCA1C, #bee74b); |
---|
[2301] | 757 | border-color: #9BCA1C; |
---|
| 758 | } |
---|
| 759 | .button-add:focus { |
---|
| 760 | outline: dotted 1px; |
---|
| 761 | } |
---|
| 762 | /* paragraphe pour bouton Nouveau bidule */ |
---|
| 763 | p.top-add { |
---|
| 764 | text-align: right; |
---|
| 765 | margin: 0; |
---|
| 766 | } |
---|
[1741] | 767 | /* disabled */ |
---|
[1768] | 768 | input.disabled, input[type=submit].disabled { |
---|
[1971] | 769 | text-shadow: none; |
---|
| 770 | color: #676e78; |
---|
| 771 | background: #F5F5F5; |
---|
[1741] | 772 | border: 1px solid #CCC; |
---|
| 773 | } |
---|
[2301] | 774 | input.disabled:hover, input[type=submit].disabled:hover { |
---|
| 775 | color: #676e78; |
---|
| 776 | background: #eee; |
---|
| 777 | border: 1px solid #CCC; |
---|
| 778 | } |
---|
[1741] | 779 | /* ---------------------------------------------------------------------------- |
---|
| 780 | MESSAGES |
---|
| 781 | ---------------------------------------------------------------------------- */ |
---|
| 782 | .warn, .warning, .info { |
---|
[500] | 783 | font-style: normal; |
---|
[1614] | 784 | padding: .2em .66em .2em; |
---|
| 785 | text-indent: 24px; |
---|
[1564] | 786 | color: #333; |
---|
[1569] | 787 | display: inline-block; |
---|
[1614] | 788 | line-height: 1.5em; |
---|
[1733] | 789 | border-radius: 3px; |
---|
| 790 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) |
---|
[1741] | 791 | } |
---|
[1749] | 792 | div.warn, div.warning, div.info { |
---|
[1979] | 793 | display: block; |
---|
[1749] | 794 | padding: 1em 1em .33em 1em; |
---|
[2006] | 795 | margin-bottom: 1em; |
---|
[1749] | 796 | } |
---|
[2301] | 797 | .warn, .warning { |
---|
| 798 | background: #FEFACD url(msg-warning.png) no-repeat .3em .3em; |
---|
| 799 | border: 1px solid #ffd478; |
---|
| 800 | } |
---|
| 801 | .info { |
---|
| 802 | background: #D9EDF7 url(msg-info.png) no-repeat .3em .3em; |
---|
| 803 | border: 1px solid #BCE8F1; |
---|
| 804 | } |
---|
| 805 | span.warn, span.warning, span.info { |
---|
| 806 | padding-top: 1px; |
---|
| 807 | padding-bottom: 1px; |
---|
| 808 | background-position: .3em .2em; |
---|
| 809 | } |
---|
[1741] | 810 | .error, .message, .static-msg, .success, .warning-msg { |
---|
| 811 | padding: 1em 0.5em 0.5em 48px; |
---|
| 812 | margin-bottom: 1em; |
---|
| 813 | border-radius: 8px; |
---|
[1760] | 814 | box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); |
---|
[1741] | 815 | } |
---|
[2301] | 816 | p.error, p.message, p.static-msg, p.success, p.warning-msg { |
---|
| 817 | padding-top: 1em; |
---|
| 818 | padding-bottom: 1em; |
---|
[2342] | 819 | margin-top: .5em; |
---|
[2301] | 820 | } |
---|
| 821 | .error { |
---|
| 822 | background: #FFBABA url(msg-error.png) no-repeat .7em .7em; |
---|
| 823 | color: #000; |
---|
| 824 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6); |
---|
| 825 | } |
---|
| 826 | .message, .static-msg { |
---|
| 827 | background: #676e78 url(msg-std.png) no-repeat .7em .7em; |
---|
| 828 | color: #fff; |
---|
| 829 | } |
---|
| 830 | .message a, .static-msg a, .message h3, .static-msg h3 { |
---|
| 831 | color: #fff; |
---|
| 832 | } |
---|
| 833 | .success, .warning-msg { |
---|
| 834 | color: #000; |
---|
| 835 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) |
---|
| 836 | } |
---|
| 837 | .success { |
---|
| 838 | background: #9bca1c url(msg-success.png) no-repeat .7em .7em; |
---|
| 839 | } |
---|
| 840 | .warning-msg { |
---|
| 841 | background: #ffd478 url(msg-warning.png) no-repeat .7em .7em; |
---|
| 842 | border: 1px solid #ffd478; |
---|
| 843 | } |
---|
| 844 | .success a, .warning-msg a, .info a { |
---|
| 845 | color: #333; |
---|
| 846 | } |
---|
[1741] | 847 | .dc-update { |
---|
| 848 | padding: 1em 48px 0.5em 48px; |
---|
| 849 | margin-bottom: 1em; |
---|
| 850 | border-radius: 8px; |
---|
| 851 | background: #A2CBE9 url(msg-success.png) no-repeat .7em .7em; |
---|
[1747] | 852 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6); |
---|
[1811] | 853 | color: #000; |
---|
[1760] | 854 | box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) |
---|
[1741] | 855 | } |
---|
[2301] | 856 | .dc-update h3 { |
---|
| 857 | margin-top: 0; |
---|
| 858 | color: #000; |
---|
| 859 | } |
---|
| 860 | .dc-update p { |
---|
| 861 | display: inline-block; |
---|
| 862 | vertical-align: middle; |
---|
| 863 | } |
---|
| 864 | .dc-update a { |
---|
| 865 | color: #000; |
---|
| 866 | margin-right: 1em; |
---|
| 867 | } |
---|
| 868 | .dc-update a.button { |
---|
| 869 | padding: .5em 1em; |
---|
| 870 | } |
---|
| 871 | .updt-info a { |
---|
| 872 | margin-left: 2em; |
---|
| 873 | border-color: #000; |
---|
| 874 | font-weight: bold; |
---|
| 875 | } |
---|
[1741] | 876 | /* --------------------------------------------------------------------------------- |
---|
[1971] | 877 | ELEMENTS PRINCIPAUX |
---|
[1741] | 878 | --------------------------------------------------------------------------------- */ |
---|
| 879 | /* -------------------------------------------------------------- HEADER ELEMENTS */ |
---|
[500] | 880 | /* prelude */ |
---|
[447] | 881 | #prelude { |
---|
[1741] | 882 | line-height: 1.5; |
---|
[447] | 883 | margin: 0; |
---|
[500] | 884 | padding: 0; |
---|
[447] | 885 | overflow: hidden; |
---|
[1741] | 886 | position: absolute; |
---|
| 887 | top: 3em; |
---|
| 888 | left: 0; |
---|
| 889 | background: #A2CBE9; |
---|
| 890 | width: 100%; |
---|
[1947] | 891 | z-index: 100; |
---|
[447] | 892 | } |
---|
[2301] | 893 | #prelude li { |
---|
| 894 | list-style-type: none; |
---|
| 895 | margin: 0; |
---|
| 896 | background: transparent; |
---|
| 897 | display: inline; |
---|
| 898 | } |
---|
| 899 | #prelude li a { |
---|
[2366] | 900 | padding: 3px 16px 3px 8px; |
---|
[2301] | 901 | background: #A2CBE9; |
---|
| 902 | color: #000; |
---|
| 903 | text-decoration: underline; |
---|
| 904 | } |
---|
| 905 | #prelude li a:hover, #prelude li a:focus { |
---|
| 906 | background: #FFF; |
---|
| 907 | } |
---|
[2030] | 908 | /* si le prélude est affiché on repousse les trucs dessous */ |
---|
[2301] | 909 | #wrapper.with-prelude { |
---|
[2030] | 910 | padding-top: 1em; |
---|
| 911 | } |
---|
| 912 | #help-button.with-prelude, #collapser.with-prelude { |
---|
| 913 | top: 1em; |
---|
| 914 | } |
---|
[2005] | 915 | /* header global h1, form#top-info-blog, ul#top-info-user */ |
---|
| 916 | #header a { |
---|
| 917 | color: #FFF; |
---|
| 918 | } |
---|
| 919 | #header img { |
---|
| 920 | vertical-align: middle; |
---|
| 921 | padding-left: .5em; |
---|
| 922 | } |
---|
| 923 | h1, #top-info-blog, #top-info-user { |
---|
| 924 | display: table-cell; |
---|
| 925 | padding: 8px 0; |
---|
[3] | 926 | margin: 0; |
---|
[2005] | 927 | font-size: 1em; |
---|
[2009] | 928 | vertical-align: top; |
---|
[2005] | 929 | } |
---|
| 930 | /* h1 */ |
---|
| 931 | h1 { |
---|
[2420] | 932 | text-indent: 100%; |
---|
[2005] | 933 | width: 16.5em; |
---|
[1741] | 934 | } |
---|
[2301] | 935 | h1 a { |
---|
| 936 | position: absolute; |
---|
| 937 | top: 0; |
---|
| 938 | left: 0; |
---|
[2420] | 939 | width: 150px; |
---|
[2366] | 940 | height: 3em; |
---|
[2301] | 941 | color: #fff; |
---|
| 942 | background: transparent url(dc_logos/b-dotclear120.png) no-repeat 0 6px; |
---|
[2543] | 943 | transition: none; |
---|
[2301] | 944 | } |
---|
| 945 | h1 a:hover, h1 a:focus { |
---|
| 946 | background-position: 0 -94px; |
---|
[2514] | 947 | background-color: transparent; |
---|
[2543] | 948 | transition: none; |
---|
[2301] | 949 | } |
---|
[2005] | 950 | /* top-info-blog */ |
---|
| 951 | #top-info-blog select { |
---|
| 952 | max-width: 20em; |
---|
[500] | 953 | } |
---|
[2078] | 954 | #top-info-blog a { |
---|
| 955 | margin-left: 1.5em; |
---|
[2005] | 956 | } |
---|
| 957 | #top-info-blog input[type=submit] { |
---|
| 958 | background: #000; |
---|
| 959 | border-color: #999; |
---|
[2301] | 960 | margin-left: .33em; |
---|
[2005] | 961 | } |
---|
| 962 | #top-info-blog input[type=submit]:hover { |
---|
| 963 | background: #999; |
---|
| 964 | } |
---|
| 965 | #top-info-blog p { |
---|
| 966 | display: inline-block; |
---|
| 967 | margin: 0; |
---|
| 968 | } |
---|
| 969 | /* top-info-user */ |
---|
| 970 | #top-info-user { |
---|
[2009] | 971 | padding-right: 18px; |
---|
[2005] | 972 | list-style-type: none; |
---|
| 973 | text-align: right; |
---|
| 974 | } |
---|
| 975 | #top-info-user li { |
---|
| 976 | display: inline-block; |
---|
| 977 | margin-left: .5em; |
---|
| 978 | padding-left: .5em; |
---|
| 979 | border-left: 1px solid #999; |
---|
| 980 | } |
---|
| 981 | #top-info-user li:first-child { |
---|
| 982 | border-left: none; |
---|
| 983 | } |
---|
| 984 | #top-info-user a.active { |
---|
| 985 | border-bottom-color: #fff; |
---|
| 986 | margin: 0; |
---|
[2030] | 987 | padding: 18px .5em; |
---|
[2005] | 988 | background-color: #fff; |
---|
| 989 | color: #333; |
---|
| 990 | font-weight: bold; |
---|
| 991 | } |
---|
[1741] | 992 | /* ---------------------------------------------------------- MAIN-MENU ELEMENTS */ |
---|
| 993 | #favorites-menu, #blog-menu, #system-menu, #plugins-menu { |
---|
| 994 | border-bottom: 1px dashed #A2CBE9; |
---|
[500] | 995 | } |
---|
[1741] | 996 | #main-menu h3 { |
---|
[3] | 997 | margin: 0; |
---|
[1741] | 998 | padding: 10px 0 10px 8px; |
---|
[1760] | 999 | color: #676e78; |
---|
[2366] | 1000 | font-size: 1.15em; |
---|
[3] | 1001 | } |
---|
[2301] | 1002 | #favorites-menu h3 { |
---|
| 1003 | color: #000; |
---|
| 1004 | font-variant: small-caps; |
---|
| 1005 | padding-top: .2em; |
---|
| 1006 | } |
---|
[1741] | 1007 | #main-menu a { |
---|
| 1008 | color: #333; |
---|
[3] | 1009 | border-bottom-color: #ccc; |
---|
[1741] | 1010 | } |
---|
[0] | 1011 | #main-menu ul { |
---|
[1741] | 1012 | margin: 0 0 1.5em 0; |
---|
[3] | 1013 | padding: 0; |
---|
| 1014 | list-style: none; |
---|
[1741] | 1015 | } |
---|
[2301] | 1016 | #main-menu li { |
---|
| 1017 | display: block; |
---|
| 1018 | margin: 0.5em 0 0; |
---|
| 1019 | padding: 4px 0 1px 32px; |
---|
| 1020 | background-repeat: no-repeat; |
---|
| 1021 | background-position: 8px .3em; |
---|
| 1022 | } |
---|
| 1023 | #main-menu ul li:first-child { |
---|
| 1024 | margin-top: 0; |
---|
| 1025 | } |
---|
| 1026 | #main-menu li.active { |
---|
| 1027 | background-color: #fff; |
---|
| 1028 | font-weight: bold; |
---|
| 1029 | } |
---|
| 1030 | #favorites-menu li.active { |
---|
| 1031 | background-color: transparent; |
---|
| 1032 | } |
---|
| 1033 | #main-menu .active a { |
---|
| 1034 | border-bottom: none; |
---|
| 1035 | color: #d30e60; |
---|
| 1036 | } |
---|
| 1037 | #favorites-menu .active a { |
---|
| 1038 | color: #000; |
---|
| 1039 | } |
---|
[1741] | 1040 | #search-menu { |
---|
| 1041 | padding: 4px 5px 0; |
---|
| 1042 | font-size: 100% |
---|
| 1043 | } |
---|
[2301] | 1044 | #search-menu * { |
---|
[2366] | 1045 | height: 2em; |
---|
[2301] | 1046 | display: inline-block; |
---|
| 1047 | vertical-align: top; |
---|
[2366] | 1048 | line-height: 24px; |
---|
[2301] | 1049 | } |
---|
| 1050 | #search-menu p { |
---|
| 1051 | border: 1px solid #999; |
---|
| 1052 | border-radius: .3em; |
---|
| 1053 | position: relative; |
---|
[2434] | 1054 | width: 95%; |
---|
[2301] | 1055 | overflow: hidden; |
---|
| 1056 | } |
---|
| 1057 | #qx { |
---|
[2434] | 1058 | width: 80%; |
---|
[2301] | 1059 | border-bottom-left-radius: .3em; |
---|
| 1060 | border-top-left-radius: .3em; |
---|
| 1061 | background: transparent url(search.png) no-repeat 4px center; |
---|
| 1062 | text-indent: 18px; |
---|
| 1063 | padding: 0; |
---|
| 1064 | border: none; |
---|
[2366] | 1065 | height: 2em; |
---|
[2301] | 1066 | } |
---|
| 1067 | #qx:focus { |
---|
| 1068 | border: 1px solid #bee74b; |
---|
| 1069 | } |
---|
| 1070 | #search-menu input[type="submit"] { |
---|
[2366] | 1071 | padding: 0 .25em; |
---|
| 1072 | margin-left: .33em; |
---|
[2301] | 1073 | background: #dfdfdf; |
---|
| 1074 | border-color: #999; |
---|
| 1075 | color: #333; |
---|
| 1076 | border-bottom-right-radius: .3em; |
---|
| 1077 | border-top-right-radius: .3em; |
---|
| 1078 | border-top-left-radius: 0; |
---|
| 1079 | border-bottom-left-radius: 0; |
---|
| 1080 | text-shadow: none; |
---|
| 1081 | border: none; |
---|
| 1082 | border-left: 1px solid #999; |
---|
[2366] | 1083 | font-size: .91em; |
---|
[2434] | 1084 | float: right; |
---|
[2301] | 1085 | } |
---|
| 1086 | #search-menu input[type="submit"]:hover, |
---|
| 1087 | #search-menu input[type="submit"]:focus { |
---|
| 1088 | background: #676e78; |
---|
| 1089 | color: #fff; |
---|
| 1090 | } |
---|
[1741] | 1091 | /* ----------------------------------------------------------------- CONTENT ELEMENTS */ |
---|
| 1092 | .part-tabs ul { |
---|
[1801] | 1093 | padding: .5em 0 0 1em; |
---|
[2324] | 1094 | border-bottom: 1px solid #ccc; |
---|
| 1095 | line-height: 1.8; |
---|
[1741] | 1096 | } |
---|
[2301] | 1097 | .part-tabs li { |
---|
| 1098 | list-style: none; |
---|
| 1099 | margin: 0; |
---|
| 1100 | display: inline; |
---|
| 1101 | } |
---|
[2324] | 1102 | .part-tabs li:first-child a { |
---|
| 1103 | border-top-left-radius: 3px; |
---|
| 1104 | } |
---|
| 1105 | .part-tabs li:last-child a { |
---|
| 1106 | border-top-right-radius: 3px; |
---|
| 1107 | } |
---|
[2301] | 1108 | .part-tabs li a { |
---|
[2324] | 1109 | padding: .33em 1.5em; |
---|
[2301] | 1110 | margin-right: -1px; |
---|
| 1111 | border: 1px solid #ccc; |
---|
| 1112 | border-bottom: none; |
---|
| 1113 | text-decoration: none; |
---|
| 1114 | color: #333; |
---|
| 1115 | background-color: #ecf0f1; |
---|
| 1116 | display: inline-block; |
---|
| 1117 | } |
---|
| 1118 | .part-tabs li a:hover, .part-tabs li a:focus { |
---|
| 1119 | color: #000; |
---|
| 1120 | background: #fff; |
---|
| 1121 | border-bottom-color: #fff; |
---|
| 1122 | } |
---|
| 1123 | .part-tabs li.part-tabs-active a { |
---|
| 1124 | background: #fff; |
---|
| 1125 | font-weight: bold; |
---|
| 1126 | border-bottom-color: #fff; |
---|
| 1127 | } |
---|
| 1128 | .multi-part { |
---|
| 1129 | padding-left: 1em; |
---|
| 1130 | } |
---|
[2358] | 1131 | .pseudo-tabs { |
---|
| 1132 | margin: -.75em 0 2em 0; |
---|
| 1133 | border-bottom: 1px solid #bbb; |
---|
| 1134 | display: table; |
---|
| 1135 | width: 100%; |
---|
| 1136 | padding: 0; |
---|
| 1137 | line-height: 24px; |
---|
| 1138 | border-collapse: collapse; |
---|
| 1139 | } |
---|
| 1140 | .pseudo-tabs li { |
---|
| 1141 | display: table-cell; |
---|
| 1142 | border-width: 0 1px; |
---|
| 1143 | border-style: solid; |
---|
| 1144 | border-color: #ccc; |
---|
| 1145 | padding: 0; |
---|
| 1146 | margin: 0; |
---|
| 1147 | text-align: center; |
---|
| 1148 | } |
---|
| 1149 | .pseudo-tabs a { |
---|
| 1150 | display: block; |
---|
| 1151 | font-weight: bold; |
---|
| 1152 | padding: 0 24px; |
---|
| 1153 | border-bottom: none; |
---|
| 1154 | } |
---|
| 1155 | .pseudo-tabs a:hover, .pseudo-tabs a:focus { |
---|
| 1156 | background-color: #ecf0f1; |
---|
| 1157 | color: #333; |
---|
| 1158 | } |
---|
| 1159 | .pseudo-tabs a.active { |
---|
| 1160 | background-color: #ecf0f1; |
---|
| 1161 | color: #d30e60; |
---|
| 1162 | } |
---|
[1741] | 1163 | /* contextual help */ |
---|
| 1164 | #help { |
---|
| 1165 | margin-top: 4em; |
---|
| 1166 | background: #f5f5f5; |
---|
| 1167 | z-index: 100; |
---|
[3] | 1168 | clear: both; |
---|
[1741] | 1169 | padding: 0 1em; |
---|
| 1170 | } |
---|
[2301] | 1171 | #content.with-help #help { |
---|
| 1172 | display: block; |
---|
| 1173 | position: absolute; |
---|
| 1174 | top: 0; |
---|
| 1175 | right: 0; |
---|
[2366] | 1176 | width: 24em; |
---|
[2301] | 1177 | border-left: 2px solid #FFD478; |
---|
| 1178 | border-top: 2px solid #FFD478; |
---|
| 1179 | margin-top: 0; |
---|
| 1180 | padding: .5em 0 0 0; |
---|
| 1181 | overflow: auto; |
---|
| 1182 | } |
---|
[1741] | 1183 | #help-button { |
---|
[2237] | 1184 | background: transparent url(help-mini.png) no-repeat 6px center; |
---|
[1741] | 1185 | position: absolute; |
---|
[1946] | 1186 | top: 0; |
---|
| 1187 | right: 0; |
---|
[1741] | 1188 | padding: 0 1.5em 0 30px; |
---|
| 1189 | cursor: pointer; |
---|
| 1190 | color: #2373A8; |
---|
[2366] | 1191 | line-height: 3; |
---|
[1741] | 1192 | } |
---|
[2301] | 1193 | #help-button.floatable { |
---|
| 1194 | border-top: 2px solid #ccc; |
---|
| 1195 | border-left: 2px solid #ccc; |
---|
| 1196 | border-bottom: 2px solid #ccc; |
---|
| 1197 | border-bottom-left-radius: 1em; |
---|
| 1198 | border-top-left-radius: 1em; |
---|
| 1199 | background-color: #f5f5f5; |
---|
| 1200 | position: fixed; |
---|
| 1201 | top: 10px; |
---|
[2339] | 1202 | -webkit-transform:translateZ(0); /* Let GPU doing his job */ |
---|
[2301] | 1203 | } |
---|
| 1204 | .no-js #help-button { |
---|
| 1205 | top: 1em; |
---|
| 1206 | } |
---|
| 1207 | #help-button span { |
---|
| 1208 | padding: .5em 0 .1em 0; |
---|
| 1209 | } |
---|
| 1210 | #content.with-help #help-button { |
---|
[2366] | 1211 | right: 24em; |
---|
[2301] | 1212 | background-color: #f5f5f5; |
---|
| 1213 | position: fixed; |
---|
| 1214 | top: 50px; |
---|
| 1215 | z-index: 100; |
---|
| 1216 | border-top: 2px solid #FFD478; |
---|
| 1217 | border-left: 2px solid #FFD478; |
---|
| 1218 | border-bottom: 2px solid #FFD478; |
---|
| 1219 | border-bottom-left-radius: 1em; |
---|
| 1220 | border-top-left-radius: 1em; |
---|
| 1221 | } |
---|
[1741] | 1222 | .help-box { |
---|
| 1223 | display: none; |
---|
| 1224 | } |
---|
[2301] | 1225 | .help-box ul { |
---|
| 1226 | padding-left: 20px; |
---|
| 1227 | margin-left: 0; |
---|
| 1228 | } |
---|
| 1229 | #content.with-help .help-content { |
---|
| 1230 | padding: 0 1em 1em; |
---|
| 1231 | } |
---|
| 1232 | .help-content dt { |
---|
| 1233 | font-weight: bold; |
---|
| 1234 | color: #676e78; |
---|
| 1235 | margin: 0; |
---|
| 1236 | } |
---|
| 1237 | .help-content dd { |
---|
| 1238 | margin: 0.3em 0 1.5em 0; |
---|
| 1239 | } |
---|
[2308] | 1240 | /* lien d'aide générale dans le help content */ |
---|
[1798] | 1241 | #helplink p { |
---|
| 1242 | padding: 0 0 0 .5em; |
---|
| 1243 | } |
---|
[1741] | 1244 | /* ------------------------------------------------------------------ FOOTER ELEMENTS */ |
---|
[0] | 1245 | #footer p { |
---|
[3] | 1246 | margin: 0; |
---|
| 1247 | padding: 0 1em; |
---|
[1741] | 1248 | font-size: 1em; |
---|
| 1249 | } |
---|
[2301] | 1250 | span.credit { |
---|
| 1251 | font-size: 1em; |
---|
| 1252 | font-weight: normal; |
---|
| 1253 | } |
---|
| 1254 | span.tooltip { |
---|
| 1255 | position: absolute; |
---|
| 1256 | padding: 0; |
---|
| 1257 | border: 0; |
---|
| 1258 | height: 1px; |
---|
| 1259 | width: 1px; |
---|
| 1260 | overflow: hidden; |
---|
| 1261 | } |
---|
| 1262 | #footer a:hover span.tooltip { |
---|
| 1263 | padding: 10px 10px 0 40px; |
---|
| 1264 | color: #d30e60; |
---|
| 1265 | height: auto; |
---|
| 1266 | width: auto; |
---|
| 1267 | right: 0; |
---|
| 1268 | bottom: 0; |
---|
| 1269 | background: #FFF; |
---|
| 1270 | z-index: 99; |
---|
| 1271 | font-family: monospace; |
---|
| 1272 | border: none; |
---|
| 1273 | text-align: left; |
---|
| 1274 | } |
---|
[1741] | 1275 | /* --------------------------------------------------------------------------------------- |
---|
| 1276 | RÈGLES SPÉCIFIQUES |
---|
| 1277 | ---------------------------------------------------------------------------------------- */ |
---|
| 1278 | /* ---------------------------------------------------------------- LISTES TABLEAUX */ |
---|
| 1279 | table .maximal, table.maximal { |
---|
| 1280 | width: 100%; |
---|
| 1281 | } |
---|
| 1282 | table .minimal { |
---|
| 1283 | width: 1px; |
---|
| 1284 | } |
---|
| 1285 | table .nowrap { |
---|
| 1286 | white-space: nowrap; |
---|
| 1287 | vertical-align: top; |
---|
| 1288 | } |
---|
| 1289 | table .count { |
---|
| 1290 | text-align: right; |
---|
| 1291 | padding-right: 1.5em; |
---|
| 1292 | } |
---|
[2531] | 1293 | th.first input { |
---|
[2126] | 1294 | padding-right: 34px; |
---|
[1741] | 1295 | } |
---|
[2218] | 1296 | .line img { |
---|
| 1297 | vertical-align: middle; |
---|
| 1298 | } |
---|
[1741] | 1299 | tr.line img.expand, th img.expand { |
---|
| 1300 | margin-right: 6px; |
---|
| 1301 | margin-bottom: -2px; |
---|
| 1302 | } |
---|
| 1303 | tr.line p { |
---|
| 1304 | margin: 0; |
---|
| 1305 | } |
---|
[2080] | 1306 | tr.line input[type=text] { |
---|
| 1307 | background: #FFF; |
---|
| 1308 | } |
---|
[2068] | 1309 | tr.line input, tr.line select { |
---|
[1741] | 1310 | vertical-align: middle; |
---|
[2068] | 1311 | -webkit-box-shadow: none; |
---|
[2301] | 1312 | box-shadow: none; |
---|
[2068] | 1313 | } |
---|
| 1314 | tr.line select { |
---|
| 1315 | width: 6em; |
---|
[1741] | 1316 | } |
---|
| 1317 | tr.line:hover { |
---|
| 1318 | background: #f3f3f3; |
---|
| 1319 | } |
---|
| 1320 | td.status { |
---|
| 1321 | vertical-align: middle; |
---|
| 1322 | } |
---|
| 1323 | td.status img { |
---|
| 1324 | margin-bottom: -2px; |
---|
| 1325 | } |
---|
| 1326 | td.status a { |
---|
| 1327 | border: none; |
---|
| 1328 | } |
---|
| 1329 | .noborder td, td.noborder, .noborder th, th.noborder { |
---|
| 1330 | border-width: 0 0 1px 0; |
---|
[2300] | 1331 | border-color: #dfdfdf; |
---|
[1741] | 1332 | line-height: 2em; |
---|
| 1333 | padding-bottom: 0; |
---|
| 1334 | } |
---|
| 1335 | .noborder p { |
---|
| 1336 | margin-bottom: 0; |
---|
| 1337 | } |
---|
| 1338 | table.posts-list { |
---|
| 1339 | min-width: 50%; |
---|
| 1340 | } |
---|
| 1341 | table.settings, table.prefs { |
---|
| 1342 | margin-bottom: 3em; |
---|
| 1343 | } |
---|
[2301] | 1344 | table.settings th:first-child, table.prefs th:first-child { |
---|
| 1345 | width: 20%; |
---|
| 1346 | } |
---|
| 1347 | table.settings th + th, table.prefs th + th { |
---|
| 1348 | width: 30%; |
---|
| 1349 | } |
---|
| 1350 | table.settings th + th + th, table.prefs th + th + th { |
---|
| 1351 | width: 10%; |
---|
| 1352 | } |
---|
| 1353 | table.settings th:last-child, table.prefs th:last-child { |
---|
| 1354 | width: 40%; |
---|
| 1355 | } |
---|
[1741] | 1356 | /* js */ |
---|
| 1357 | td.expand { |
---|
| 1358 | padding: 1em; |
---|
| 1359 | } |
---|
| 1360 | tr.expand td { |
---|
| 1361 | border-bottom: none; |
---|
| 1362 | } |
---|
| 1363 | .handle { |
---|
| 1364 | padding: 0; |
---|
| 1365 | } |
---|
| 1366 | .handler { |
---|
| 1367 | cursor: move; |
---|
| 1368 | background: transparent url(drag.png) no-repeat 0 50%; |
---|
| 1369 | padding-left: 15px; |
---|
| 1370 | } |
---|
| 1371 | /* ----------------------------------------------------------- BOITES À FILTRES */ |
---|
[1994] | 1372 | a.form-control { |
---|
| 1373 | display: none; |
---|
| 1374 | background: url(../images/expand.png) no-repeat 4px center; |
---|
| 1375 | padding-left: 20px; |
---|
| 1376 | color: #000; |
---|
| 1377 | } |
---|
[2131] | 1378 | a.form-control.open { |
---|
| 1379 | background: url(../images/hide.png) no-repeat 4px center; |
---|
| 1380 | } |
---|
[1741] | 1381 | #filters-form { |
---|
| 1382 | border: 1px dashed #999; |
---|
[2224] | 1383 | border-radius: .3em; |
---|
[1741] | 1384 | margin-bottom: 2em; |
---|
| 1385 | padding: .5em 1em 0; |
---|
| 1386 | } |
---|
| 1387 | #filters-form .table { |
---|
| 1388 | width: 100%; |
---|
| 1389 | padding: 0; |
---|
| 1390 | margin-bottom: 1em; |
---|
| 1391 | margin-top: .5em; |
---|
| 1392 | } |
---|
[2301] | 1393 | #filters-form .cell { |
---|
| 1394 | padding: 0 2em 0 0; |
---|
| 1395 | } |
---|
| 1396 | #filters-form .filters-sibling-cell { |
---|
| 1397 | padding-top: 3.8em; |
---|
| 1398 | } |
---|
[1741] | 1399 | #filters-form .filters-options { |
---|
| 1400 | padding-left: 2em; |
---|
| 1401 | border-left: 1px solid #ccc; |
---|
| 1402 | } |
---|
| 1403 | #filters-form label.ib, span.ib { |
---|
[2301] | 1404 | width: 7em; |
---|
[1741] | 1405 | } |
---|
| 1406 | #filters-form label.ibw, span.ibw { |
---|
| 1407 | width: 9em; |
---|
| 1408 | display: inline-block; |
---|
| 1409 | } |
---|
| 1410 | #filters-form select { |
---|
| 1411 | width: 14em; |
---|
[2224] | 1412 | vertical-align: middle; |
---|
[1741] | 1413 | } |
---|
| 1414 | #filters-form h4 { |
---|
| 1415 | margin-top: 0; |
---|
| 1416 | margin-bottom: 2em; |
---|
| 1417 | } |
---|
| 1418 | /* ---------------------------------------------------------------------------- SPEC PAGES */ |
---|
[500] | 1419 | /* ---------------------------------------------------------------------------- auth.php */ |
---|
| 1420 | #login-screen { |
---|
| 1421 | display: block; |
---|
[1741] | 1422 | width: 20em; |
---|
[500] | 1423 | margin: 1.5em auto 0; |
---|
[2366] | 1424 | font-size: 1.16em; |
---|
[1741] | 1425 | } |
---|
[500] | 1426 | #login-screen h1 { |
---|
| 1427 | text-indent: -2000px; |
---|
[1741] | 1428 | background: transparent url(dc_logos/w-dotclear240.png) no-repeat top left; |
---|
| 1429 | height: 66px; |
---|
[2026] | 1430 | width: 20em; |
---|
[500] | 1431 | margin-bottom: .5em; |
---|
[1741] | 1432 | margin-left: 0; |
---|
| 1433 | } |
---|
| 1434 | #login-screen .fieldset { |
---|
[2300] | 1435 | border: 1px solid #9bca1c; |
---|
[500] | 1436 | padding: 1em 1em 0 1em; |
---|
[1741] | 1437 | background: #fff; |
---|
[2342] | 1438 | margin-bottom: 0; |
---|
[2510] | 1439 | margin-top: 1em; |
---|
[1741] | 1440 | } |
---|
[1950] | 1441 | #login-screen input[type=text], #login-screen input[type=password], #login-screen input[type=submit], |
---|
| 1442 | #login-screen input[type=text]:focus, #login-screen input[type=password]:focus, #login-screen input[type=submit]:focus { |
---|
[500] | 1443 | width: 100%; |
---|
[2301] | 1444 | margin: 0; |
---|
[1950] | 1445 | padding: 5px 3px; |
---|
[2301] | 1446 | } |
---|
| 1447 | #login-screen input.login, #login-screen input.login:focus { |
---|
| 1448 | padding-top: 6px; |
---|
| 1449 | padding-bottom: 6px; |
---|
| 1450 | font-size: 1em; |
---|
| 1451 | } |
---|
[500] | 1452 | #login-screen #issue { |
---|
[1741] | 1453 | margin-left: 1.33em; |
---|
[2366] | 1454 | font-size: .91em; |
---|
[1741] | 1455 | } |
---|
[2342] | 1456 | #issue p:first-child { |
---|
| 1457 | text-align: right; |
---|
| 1458 | } |
---|
[2301] | 1459 | #login-screen #issue strong { |
---|
| 1460 | font-weight: normal; |
---|
| 1461 | } |
---|
[1741] | 1462 | /* ------------------------------------------------------------------------- index.php */ |
---|
[0] | 1463 | #dashboard-main { |
---|
[2358] | 1464 | padding: 1em; |
---|
[2465] | 1465 | text-align: center; |
---|
[1741] | 1466 | } |
---|
| 1467 | /* raccourcis */ |
---|
[471] | 1468 | #icons { |
---|
[0] | 1469 | overflow: hidden; |
---|
| 1470 | padding-bottom: 1em; |
---|
[27] | 1471 | text-align: center; |
---|
[1741] | 1472 | } |
---|
[2301] | 1473 | #icons p { |
---|
[2430] | 1474 | width: 14em; |
---|
[2301] | 1475 | text-align: center; |
---|
| 1476 | margin: 1em 0 2em; |
---|
| 1477 | padding: 1em 0; |
---|
| 1478 | display: inline-block; |
---|
| 1479 | vertical-align: top; |
---|
| 1480 | } |
---|
| 1481 | #icons a, |
---|
[1741] | 1482 | #icons a:link, |
---|
| 1483 | #icons a:visited, |
---|
| 1484 | #icons a:hover, |
---|
| 1485 | #icons a:focus { |
---|
[2301] | 1486 | border-bottom-width: 0; |
---|
| 1487 | text-decoration: none; |
---|
| 1488 | } |
---|
| 1489 | #icons a span { |
---|
| 1490 | border-bottom: 1px dotted #999; |
---|
| 1491 | color: #333; |
---|
| 1492 | } |
---|
| 1493 | #icons a img { |
---|
| 1494 | padding: 1.5em; |
---|
| 1495 | background-color: #f9f9f9; |
---|
| 1496 | border-radius: 8px; |
---|
| 1497 | border: 1px solid #dadada; |
---|
| 1498 | display: inline-block; |
---|
| 1499 | } |
---|
| 1500 | #icons a:focus img, #icons a:hover img { |
---|
| 1501 | background: #bee74b; |
---|
[2518] | 1502 | outline: 0; |
---|
| 1503 | border-color: #dadada; |
---|
| 1504 | } |
---|
| 1505 | #icons a:focus { |
---|
| 1506 | outline: 0; |
---|
[2566] | 1507 | border-color: #fff; |
---|
[2301] | 1508 | } |
---|
[2519] | 1509 | #icons a:hover span, #icons a:focus span { |
---|
[2301] | 1510 | border-bottom-style: solid; |
---|
| 1511 | } |
---|
[2519] | 1512 | #icons a:focus span { |
---|
| 1513 | border: 2px solid #bee74b; |
---|
| 1514 | } |
---|
[1741] | 1515 | /* billet rapide */ |
---|
| 1516 | #quick { |
---|
[2358] | 1517 | padding: 1em; |
---|
[2465] | 1518 | max-width: 976px; |
---|
[2358] | 1519 | margin: 0 auto; |
---|
| 1520 | background: #f5f5f5; |
---|
| 1521 | box-shadow: 0 1px 2px rgba(0, 0, 0, .2); |
---|
[2465] | 1522 | text-align: left; |
---|
[1741] | 1523 | } |
---|
[2301] | 1524 | #quick h3 { |
---|
| 1525 | margin-bottom: 0.2em; |
---|
| 1526 | font-size: 1.2em; |
---|
| 1527 | } |
---|
| 1528 | #quick p.qinfo { |
---|
| 1529 | margin: -.7em -1em 1em; |
---|
| 1530 | background: #D9EDF7 url(info.png) no-repeat .2em .2em; |
---|
| 1531 | border: 1px solid #BCE8F1; |
---|
| 1532 | padding: .2em 1em .1em 24px; |
---|
| 1533 | color: #000; |
---|
| 1534 | } |
---|
| 1535 | #quick #new_cat, .q-cat, .q-cat label { |
---|
| 1536 | display: inline-block; |
---|
| 1537 | vertical-align: top; |
---|
| 1538 | margin-right: 1em; |
---|
| 1539 | margin-top: 0; |
---|
| 1540 | } |
---|
| 1541 | .q-cat label { |
---|
| 1542 | margin-right: .3em; |
---|
| 1543 | } |
---|
| 1544 | #quick #new_cat { |
---|
| 1545 | margin-bottom: 2em; |
---|
[1741] | 1546 | } |
---|
| 1547 | /* modules additionnels */ |
---|
| 1548 | #dashboard-boxes { |
---|
[2358] | 1549 | margin: 1em auto 1em; |
---|
[1741] | 1550 | padding-top: 2em; |
---|
| 1551 | } |
---|
[2301] | 1552 | .db-items, .db-contents { |
---|
| 1553 | display: inline-block; |
---|
| 1554 | text-align: center; |
---|
| 1555 | } |
---|
| 1556 | .no-js .outgoing img { |
---|
| 1557 | display: none; |
---|
| 1558 | } |
---|
| 1559 | #dashboard-boxes .box { |
---|
| 1560 | padding: 10px; |
---|
| 1561 | border: 1px solid #ccc; |
---|
| 1562 | border-radius: 3px; |
---|
| 1563 | min-height: 200px; |
---|
| 1564 | margin: 10px; |
---|
| 1565 | text-align: left; |
---|
| 1566 | } |
---|
| 1567 | .dc-box { |
---|
| 1568 | background: transparent url(dc_logos/sq-logo-32.png) no-repeat top right; |
---|
| 1569 | } |
---|
| 1570 | .db-items img, .db-contents img { |
---|
| 1571 | vertical-align: middle; |
---|
| 1572 | } |
---|
| 1573 | .db-items ul, .db-contents ul { |
---|
| 1574 | display: block; |
---|
| 1575 | padding-left: 1.5em; |
---|
| 1576 | list-style: square; |
---|
| 1577 | } |
---|
| 1578 | .db-items li, .db-contents li { |
---|
| 1579 | margin: 0.25em 0 0 0; |
---|
| 1580 | } |
---|
| 1581 | #news dt { |
---|
| 1582 | font-weight: bold; |
---|
| 1583 | margin: 0 0 0.4em 0; |
---|
| 1584 | } |
---|
| 1585 | #news dd { |
---|
| 1586 | margin: 0 0 1em 0; |
---|
| 1587 | } |
---|
| 1588 | #news dd p { |
---|
| 1589 | margin: 0.2em 0 0 0; |
---|
| 1590 | } |
---|
[1741] | 1591 | /* message de mise à jour */ |
---|
| 1592 | #upg-notify ul { |
---|
| 1593 | padding-left: 1.5em; |
---|
| 1594 | } |
---|
[2301] | 1595 | #upg-notify li { |
---|
| 1596 | color: #fff; |
---|
| 1597 | } |
---|
[1741] | 1598 | /* ------------------------------------------------------------------- blog_pref.php */ |
---|
[1848] | 1599 | #media_img_title_pattern { |
---|
| 1600 | margin-right: 1em; |
---|
| 1601 | } |
---|
[1741] | 1602 | .user-perm { |
---|
| 1603 | margin: 2em 0px; |
---|
| 1604 | background: transparent url(user.png) no-repeat left top; |
---|
| 1605 | width: 320px; |
---|
| 1606 | display: inline-block; |
---|
| 1607 | vertical-align: top; |
---|
| 1608 | } |
---|
[2301] | 1609 | .user-perm h4, .user-perm h5, .user-perm p, .user-perm ul, .user-perm li { |
---|
| 1610 | margin: .5em 0 .33em; |
---|
| 1611 | padding: 0; |
---|
| 1612 | } |
---|
| 1613 | .user-perm h4 { |
---|
| 1614 | padding-left: 28px; |
---|
| 1615 | } |
---|
| 1616 | .user-perm h5 { |
---|
| 1617 | margin: 1em 0 0 0; |
---|
| 1618 | } |
---|
| 1619 | .user-perm ul { |
---|
| 1620 | list-style-type: inside; |
---|
| 1621 | } |
---|
| 1622 | .user-perm li { |
---|
| 1623 | margin-left: 1em; |
---|
| 1624 | padding-left: 0; |
---|
| 1625 | } |
---|
| 1626 | li.user_super, li.user_admin { |
---|
| 1627 | margin-left: 0; |
---|
| 1628 | padding-left: 20px; |
---|
| 1629 | list-style: none; |
---|
| 1630 | background: transparent url(../images/superadmin.png) no-repeat 0 .3em; |
---|
| 1631 | } |
---|
| 1632 | li.user_admin { |
---|
| 1633 | background-image: url(../images/admin.png); |
---|
| 1634 | } |
---|
[1741] | 1635 | /* ------------------------------------------------------------------- blog_theme.php */ |
---|
[2351] | 1636 | /* pour les alignements verticaux */ |
---|
[2489] | 1637 | #theme-new, #theme-activate, #theme-deactivate, #theme-update { |
---|
[2351] | 1638 | margin-left: -10px; |
---|
| 1639 | margin-right: -10px; |
---|
| 1640 | } |
---|
[2179] | 1641 | .box.theme { |
---|
[2351] | 1642 | margin: 5px; |
---|
[2273] | 1643 | padding: 10px 10px 5px 10px; |
---|
[2300] | 1644 | border: 1px solid #dfdfdf; |
---|
[2293] | 1645 | position: relative; |
---|
[1741] | 1646 | } |
---|
[2272] | 1647 | .box.theme:hover { |
---|
[2280] | 1648 | background: #ecf0f1 url(texture.png); |
---|
[2273] | 1649 | } |
---|
[2489] | 1650 | .module-name, .module-name label { |
---|
[2194] | 1651 | margin-bottom: .5em; |
---|
[2489] | 1652 | color: #676e78; |
---|
[2194] | 1653 | } |
---|
[2273] | 1654 | .module-sshot { |
---|
| 1655 | text-align: center; |
---|
| 1656 | } |
---|
[2179] | 1657 | .module-sshot img { |
---|
[2351] | 1658 | padding: 5px; |
---|
[2194] | 1659 | background: #f7f7f7; |
---|
| 1660 | box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); |
---|
[2273] | 1661 | border: 3px solid #fff; |
---|
[2430] | 1662 | max-width: 100%; |
---|
[2351] | 1663 | } |
---|
| 1664 | .module-actions { |
---|
| 1665 | margin-top: 1em; |
---|
| 1666 | } |
---|
| 1667 | .bloc-toggler { |
---|
| 1668 | text-align: right; |
---|
| 1669 | } |
---|
| 1670 | .bloc-toggler img { |
---|
| 1671 | opacity: .4; |
---|
| 1672 | } |
---|
| 1673 | .bloc-toggler img:hover { |
---|
| 1674 | opacity: 1; |
---|
| 1675 | } |
---|
| 1676 | .bloc-toggler a:focus img { |
---|
| 1677 | opacity: 1; |
---|
| 1678 | } |
---|
| 1679 | span.module-version:before { |
---|
| 1680 | content: "- "; |
---|
| 1681 | } |
---|
| 1682 | .toggle-bloc .mod-more { |
---|
| 1683 | display: block; |
---|
| 1684 | margin-left: 0; |
---|
| 1685 | } |
---|
| 1686 | .box.theme input { |
---|
| 1687 | margin-bottom: 1em; |
---|
| 1688 | } |
---|
[2489] | 1689 | .module-name input[type="checkbox"] { |
---|
| 1690 | margin-bottom: 0; |
---|
| 1691 | } |
---|
[2351] | 1692 | /** |
---|
| 1693 | Les screenshots des thèmes ont deux tailles possibles : |
---|
| 1694 | - dans Ajouter des thèmes : 240px (+ 10 padding image + 20 padding boîte + 6 bordure + 2 ombrage = 278) |
---|
| 1695 | - dans Thèmes installés : 280px (+ 10 padding-image + 20 padding-boîte + 2 ombrage = 318) |
---|
[2566] | 1696 | On adapte largeur et hauteur en fonction |
---|
[2351] | 1697 | */ |
---|
[2489] | 1698 | #theme-new .box.theme, #theme-update .box.theme { /* Ajouter un thème */ |
---|
[2351] | 1699 | width: 278px; |
---|
| 1700 | min-height: 275px; |
---|
| 1701 | } |
---|
| 1702 | #theme-new .module-sshot img { /* Pour ceux qui n'ont pas de miniature on contraint l'image */ |
---|
| 1703 | max-width: 240px; |
---|
[2300] | 1704 | max-height: 210px; |
---|
[2301] | 1705 | overflow: hidden; |
---|
[2298] | 1706 | } |
---|
[2351] | 1707 | #theme-deactivate .box.theme { /* Thèmes désactivés */ |
---|
| 1708 | width: 278px; |
---|
| 1709 | } |
---|
| 1710 | #theme-activate .box.theme { /* Thèmes installés */ |
---|
| 1711 | width: 318px; |
---|
| 1712 | min-height: 304px; |
---|
[2430] | 1713 | max-width: 100%; |
---|
[2351] | 1714 | } |
---|
| 1715 | #theme-deactivate .box.theme:hover { |
---|
| 1716 | background: transparent url(dc_logos/sq-logo-32.png) no-repeat top right; |
---|
| 1717 | } |
---|
| 1718 | /* si js est là, les infos viennent par dessus le screenshot */ |
---|
[2293] | 1719 | .with-js #theme-new .module-infos.toggle-bloc, |
---|
| 1720 | .with-js #theme-new .module-actions.toggle-bloc { |
---|
| 1721 | position: absolute; |
---|
| 1722 | left: 10px; |
---|
| 1723 | width: 239px; |
---|
[2351] | 1724 | margin: 0; |
---|
[2293] | 1725 | padding: 10px; |
---|
[2294] | 1726 | background: rgba(250, 250, 250, .95); |
---|
[2293] | 1727 | } |
---|
| 1728 | .with-js #theme-new .module-infos.toggle-bloc { |
---|
[2345] | 1729 | top: 128px; |
---|
[2293] | 1730 | height: 80px; |
---|
| 1731 | border-top: 1px solid #e3e3e3; |
---|
| 1732 | } |
---|
| 1733 | .with-js #theme-new .module-actions.toggle-bloc { |
---|
[2345] | 1734 | top: 208px; |
---|
| 1735 | height: 40px; |
---|
[2293] | 1736 | border-bottom: 1px solid #e3e3e3; |
---|
[2351] | 1737 | } |
---|
| 1738 | .with-js .module-sshot:hover { |
---|
| 1739 | cursor: pointer; |
---|
| 1740 | } |
---|
| 1741 | /* mise en forme pour la boîte du thème courant */ |
---|
| 1742 | .box.current-theme { /* Thème courant */ |
---|
| 1743 | width: 646px; |
---|
| 1744 | margin: 5px; |
---|
| 1745 | padding: 20px 18px 6px; |
---|
[2280] | 1746 | background: #fff url(texture.png); |
---|
[2272] | 1747 | border: 1px solid #eee; |
---|
[2221] | 1748 | border-radius: .5em; |
---|
[2351] | 1749 | min-height: 326px; |
---|
[2272] | 1750 | box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); |
---|
[2351] | 1751 | position: relative; |
---|
| 1752 | } |
---|
| 1753 | .current-theme .module-sshot:hover { |
---|
| 1754 | cursor: auto; |
---|
[2221] | 1755 | } |
---|
[2194] | 1756 | .current-theme .module-sshot img { |
---|
[1741] | 1757 | float: left; |
---|
[2194] | 1758 | margin-right: 2em; |
---|
[2351] | 1759 | border: 9px solid #fff; |
---|
| 1760 | padding: 5px; |
---|
[2443] | 1761 | max-width: 308px; |
---|
| 1762 | max-height: 273px; |
---|
[1741] | 1763 | } |
---|
[2221] | 1764 | .current-theme .module-name { |
---|
| 1765 | color: #D33800; |
---|
[2351] | 1766 | font-size: 1.5em; |
---|
[2241] | 1767 | margin-bottom: 1em; |
---|
| 1768 | } |
---|
[2260] | 1769 | .current-actions { |
---|
| 1770 | width: auto; |
---|
| 1771 | overflow: hidden; |
---|
[2351] | 1772 | padding-top: 2em; |
---|
[2260] | 1773 | margin: 1.5em 0 2em; |
---|
| 1774 | background: transparent url(../images/minus-theme.png) no-repeat left top; |
---|
| 1775 | } |
---|
[2351] | 1776 | .current-theme .actions-buttons { |
---|
| 1777 | position: absolute; |
---|
| 1778 | bottom: 0; |
---|
| 1779 | right: 18px; |
---|
| 1780 | } |
---|
[1741] | 1781 | /* ------------------------------------------------------------------ categories.php */ |
---|
[0] | 1782 | #categories { |
---|
[1741] | 1783 | margin: 1em 0; |
---|
| 1784 | } |
---|
[0] | 1785 | #categories ul { |
---|
| 1786 | list-style: none; |
---|
[2022] | 1787 | margin-top: 2em; |
---|
[148] | 1788 | padding: 0; |
---|
[1741] | 1789 | } |
---|
[2301] | 1790 | .cat-line { |
---|
| 1791 | position: relative; |
---|
| 1792 | margin: .66em 0; |
---|
| 1793 | padding: .66em 1em; |
---|
| 1794 | border: 1px solid #ccc; |
---|
| 1795 | border-radius: 3px; |
---|
| 1796 | } |
---|
| 1797 | .cat-line label { |
---|
| 1798 | margin-right: .25em; |
---|
| 1799 | } |
---|
| 1800 | .cat-line label a { |
---|
| 1801 | font-weight: bold; |
---|
| 1802 | } |
---|
| 1803 | .cat-line p, .cat-line label { |
---|
| 1804 | margin: 0; |
---|
| 1805 | display: inline-block; |
---|
| 1806 | } |
---|
| 1807 | p.cat-title { |
---|
| 1808 | margin-right: 1em; |
---|
| 1809 | } |
---|
| 1810 | .cat-nb-posts a { |
---|
| 1811 | color: #333; |
---|
| 1812 | } |
---|
| 1813 | .cat-url { |
---|
| 1814 | padding-left: 1em; |
---|
| 1815 | } |
---|
| 1816 | #categories .placeholder { |
---|
| 1817 | outline: 1px dashed #4183C4; |
---|
| 1818 | min-height: 2.5em; |
---|
| 1819 | } |
---|
| 1820 | .cat-buttons { |
---|
| 1821 | float: right; |
---|
[1957] | 1822 | margin-top: -.2em; |
---|
[2366] | 1823 | font-size: .91em; |
---|
[1957] | 1824 | } |
---|
| 1825 | .cat-buttons select { |
---|
| 1826 | padding: 1px 2px 3px 2px; |
---|
| 1827 | margin-right: .25em; |
---|
| 1828 | } |
---|
| 1829 | .cat-buttons .reset { |
---|
| 1830 | padding-left: 4px; |
---|
| 1831 | padding-right: 4px; |
---|
| 1832 | } |
---|
| 1833 | #categories ul ul { |
---|
| 1834 | margin-right: 2em; |
---|
[1971] | 1835 | margin-left: 2em; |
---|
[1957] | 1836 | } |
---|
| 1837 | .cat-line .cat-line { |
---|
[1971] | 1838 | border: 1px solid #dfdfdf; |
---|
[1957] | 1839 | } |
---|
[1741] | 1840 | .cat-actions { |
---|
| 1841 | line-height: 2; |
---|
| 1842 | } |
---|
[2301] | 1843 | #del_cat { |
---|
| 1844 | width: 100%; |
---|
| 1845 | } |
---|
[1741] | 1846 | /* ------------------------------------------------------------------ media.php */ |
---|
[500] | 1847 | .media-item { |
---|
| 1848 | position: relative; |
---|
[2300] | 1849 | border: 1px solid #dfdfdf; |
---|
[1869] | 1850 | margin: 9px; |
---|
[1862] | 1851 | padding: 10px 12px 6px; |
---|
[2342] | 1852 | width: 320px; |
---|
[1741] | 1853 | display: inline-block; |
---|
| 1854 | vertical-align: top; |
---|
[1862] | 1855 | min-height: 140px; |
---|
[2097] | 1856 | word-wrap: break-word; |
---|
[1741] | 1857 | } |
---|
[2301] | 1858 | .media-item p { |
---|
| 1859 | margin: 0 0 .5em; |
---|
| 1860 | } |
---|
| 1861 | .media-item object { |
---|
| 1862 | margin-top: .5em; |
---|
| 1863 | } |
---|
| 1864 | .media-item ul { |
---|
| 1865 | display: block; |
---|
| 1866 | list-style: none; |
---|
| 1867 | margin: 0; |
---|
| 1868 | padding: 0; |
---|
| 1869 | } |
---|
| 1870 | a.media-icon { |
---|
| 1871 | display: block; |
---|
| 1872 | border-bottom: none; |
---|
| 1873 | margin: 0 auto; |
---|
| 1874 | } |
---|
| 1875 | .media-icon img { |
---|
| 1876 | display: block; |
---|
| 1877 | } |
---|
| 1878 | .media-link { |
---|
| 1879 | font-size: 1.1em; |
---|
| 1880 | } |
---|
| 1881 | .media-action-box { |
---|
| 1882 | position: relative; |
---|
| 1883 | margin: 3em 3em 1em 1em; |
---|
| 1884 | display: inline-block; |
---|
| 1885 | vertical-align: top; |
---|
| 1886 | } |
---|
| 1887 | li.media-action { |
---|
| 1888 | display: block; |
---|
| 1889 | position: absolute; |
---|
| 1890 | bottom: 4px; |
---|
| 1891 | right: 8px; |
---|
| 1892 | height: 16px; |
---|
| 1893 | } |
---|
| 1894 | li.media-action a { |
---|
| 1895 | border: none; |
---|
| 1896 | } |
---|
[2320] | 1897 | li.media-action a.attach-media { |
---|
| 1898 | margin-right: 5px; |
---|
| 1899 | } |
---|
[2301] | 1900 | li.media-action form { |
---|
| 1901 | display: inline; |
---|
| 1902 | } |
---|
| 1903 | li.media-action input { |
---|
| 1904 | border: none; |
---|
| 1905 | } |
---|
[1864] | 1906 | #entry-sidebar .media-item { |
---|
| 1907 | width: 100%; |
---|
| 1908 | min-height: 0; |
---|
| 1909 | padding: 4px; |
---|
| 1910 | margin: .33em 0; |
---|
| 1911 | } |
---|
[2301] | 1912 | #entry-sidebar li.media-action { |
---|
| 1913 | top: 4px; |
---|
| 1914 | } |
---|
[1855] | 1915 | .folders-group .media-item { |
---|
[1869] | 1916 | min-height: 70px; |
---|
[1855] | 1917 | } |
---|
[2301] | 1918 | .folders-group .media-item p { |
---|
| 1919 | margin-bottom: 0; |
---|
| 1920 | } |
---|
| 1921 | .media-folder { |
---|
| 1922 | background: transparent url(bg_menu.png) repeat-y; |
---|
| 1923 | border-color: #eee; |
---|
| 1924 | } |
---|
| 1925 | .media-folder-up { |
---|
| 1926 | border-color: #fff; |
---|
| 1927 | padding-bottom: 6px; |
---|
| 1928 | } |
---|
| 1929 | .media-folder .media-link { |
---|
| 1930 | font-size: 1.25em; |
---|
| 1931 | margin-left: 2em; |
---|
| 1932 | color: #676e78; |
---|
| 1933 | border-bottom: none; |
---|
| 1934 | } |
---|
[2263] | 1935 | .medias-delete { |
---|
| 1936 | text-align: right; |
---|
| 1937 | } |
---|
[1852] | 1938 | /* upload multiple */ |
---|
[2566] | 1939 | .enhanced_uploader .choose_files, .enhanced_uploader .cancel, |
---|
[1851] | 1940 | .enhanced_uploader .clean, .enhanced_uploader .start { |
---|
| 1941 | margin-right: .4em; |
---|
[1852] | 1942 | } |
---|
[1851] | 1943 | .enhanced_uploader #upfile { |
---|
| 1944 | visibility: hidden; |
---|
| 1945 | width: 0; |
---|
| 1946 | height: 0; |
---|
| 1947 | margin: 0; |
---|
| 1948 | opacity: 0; |
---|
| 1949 | filter: alpha(opacity=0); |
---|
| 1950 | cursor: pointer; |
---|
[1852] | 1951 | } |
---|
[1854] | 1952 | .button.clean, .button.cancel, .button.choose_files { |
---|
[1851] | 1953 | display: none; |
---|
[1852] | 1954 | } |
---|
[1854] | 1955 | .enhanced_uploader .button.choose_files { |
---|
[1851] | 1956 | display: inline-block; |
---|
[1852] | 1957 | } |
---|
[1851] | 1958 | .enhanced_uploader .max-size { |
---|
| 1959 | display: block; |
---|
[1852] | 1960 | } |
---|
[1851] | 1961 | .enhanced_uploader .one-file { |
---|
| 1962 | display: none; |
---|
[1852] | 1963 | } |
---|
[1851] | 1964 | label span.one-file { |
---|
| 1965 | display: inline; |
---|
[1852] | 1966 | } |
---|
[1851] | 1967 | .enhanced_uploader p.clear { |
---|
| 1968 | padding-top: 1em; |
---|
| 1969 | margin-bottom: 1em; |
---|
[1852] | 1970 | } |
---|
[1851] | 1971 | #add-file-f p.clear { |
---|
| 1972 | margin-top: 1em; |
---|
| 1973 | margin-bottom: 0; |
---|
| 1974 | clear: both; |
---|
[1852] | 1975 | } |
---|
[1851] | 1976 | .files { |
---|
| 1977 | list-style-type: none; |
---|
| 1978 | margin-left: 0; |
---|
| 1979 | padding-left: 0; |
---|
[2300] | 1980 | border-bottom: 1px solid #dfdfdf; |
---|
[1852] | 1981 | } |
---|
[1851] | 1982 | .files li { |
---|
| 1983 | margin-left: 0; |
---|
| 1984 | padding-left: 0; |
---|
[1852] | 1985 | } |
---|
[1851] | 1986 | .upload-msg { |
---|
| 1987 | font-weight: bold; |
---|
[1852] | 1988 | } |
---|
[1851] | 1989 | .upload-msg.upload-error { |
---|
[2300] | 1990 | color: #900; |
---|
[1852] | 1991 | } |
---|
[1851] | 1992 | .upload-files { |
---|
| 1993 | padding: 0 0.5em; |
---|
[1852] | 1994 | margin: 1em 0; |
---|
| 1995 | } |
---|
[1851] | 1996 | .upload-file { |
---|
[1852] | 1997 | margin: 0; |
---|
| 1998 | padding: .3em 0; |
---|
[2300] | 1999 | border-top: 1px solid #dfdfdf; |
---|
[1851] | 2000 | position: relative; |
---|
[1852] | 2001 | } |
---|
[1851] | 2002 | .upload-fileinfo { |
---|
[1852] | 2003 | margin-left: 0; |
---|
| 2004 | } |
---|
| 2005 | .upload-fileinfo input { |
---|
| 2006 | position: absolute; |
---|
| 2007 | top: .5em; |
---|
| 2008 | right: .5em; |
---|
| 2009 | } |
---|
[1851] | 2010 | .upload-fileinfo span { |
---|
| 2011 | padding-right: 8px; |
---|
[1852] | 2012 | } |
---|
[1851] | 2013 | .upload-fileinfo .upload-filecancel { |
---|
| 2014 | display: block; |
---|
| 2015 | padding-right: 0; |
---|
| 2016 | margin-top: 3px; |
---|
| 2017 | width: 20px; |
---|
| 2018 | height: 20px; |
---|
| 2019 | background: transparent url("cancel.png") no-repeat left top; |
---|
| 2020 | text-indent: -1000px; |
---|
| 2021 | cursor: pointer; |
---|
| 2022 | float: left; |
---|
[1852] | 2023 | } |
---|
[1851] | 2024 | .upload-filemsg { |
---|
| 2025 | font-weight: bold; |
---|
| 2026 | color: green; |
---|
[1852] | 2027 | } |
---|
[1851] | 2028 | .upload-filemsg.upload-error { |
---|
[2300] | 2029 | color: #900; |
---|
[1852] | 2030 | } |
---|
[1851] | 2031 | .upload-progress { |
---|
[2301] | 2032 | padding: .3em 0; |
---|
[1852] | 2033 | } |
---|
[1851] | 2034 | .upload-progress div { |
---|
| 2035 | width: 0; |
---|
[2342] | 2036 | height: 1.2em; |
---|
[1851] | 2037 | font-weight: bold; |
---|
[2342] | 2038 | line-height: 1.2em; |
---|
[1851] | 2039 | text-align: right; |
---|
[2308] | 2040 | background: green url(loader.png) repeat-x left top; |
---|
[1851] | 2041 | color: white; |
---|
[2308] | 2042 | border-radius: 3px; |
---|
[1852] | 2043 | } |
---|
[1851] | 2044 | div.template-upload { |
---|
| 2045 | clear: both; |
---|
[1852] | 2046 | } |
---|
[1851] | 2047 | .queue-message { |
---|
| 2048 | font-weight: bold; |
---|
[1852] | 2049 | } |
---|
[1741] | 2050 | /* --------------------------------------------------------------- media-item.php */ |
---|
| 2051 | #media-icon { |
---|
| 2052 | float: left; |
---|
| 2053 | } |
---|
| 2054 | .near-icon { |
---|
| 2055 | margin-left: 70px; |
---|
| 2056 | margin-bottom: 3em; |
---|
| 2057 | } |
---|
| 2058 | #media-details ul { |
---|
| 2059 | display: block; |
---|
[3] | 2060 | margin-left: 0; |
---|
[1741] | 2061 | padding: 0; |
---|
| 2062 | } |
---|
[2301] | 2063 | #media-details li { |
---|
| 2064 | list-style: square inside; |
---|
| 2065 | margin: 0; |
---|
| 2066 | padding: 0; |
---|
| 2067 | } |
---|
[1741] | 2068 | #media-original-image { |
---|
| 2069 | overflow: auto; |
---|
| 2070 | } |
---|
[2301] | 2071 | #media-original-image.overheight { |
---|
| 2072 | height: 500px; |
---|
| 2073 | } |
---|
[1741] | 2074 | /* -------------------------------------------------------------------- plugins.php */ |
---|
[2171] | 2075 | .modules td.module-actions, .modules td.module-icon { |
---|
[1741] | 2076 | vertical-align: middle; |
---|
| 2077 | } |
---|
[2171] | 2078 | .modules td.module-icon img:last-child { |
---|
[2149] | 2079 | width: 16px; |
---|
| 2080 | height: 16px; |
---|
| 2081 | } |
---|
[2171] | 2082 | .modules td.module-icon img.expand { |
---|
[2158] | 2083 | margin-bottom: 3px; |
---|
| 2084 | } |
---|
[2171] | 2085 | .modules td.module-distrib img { |
---|
[3] | 2086 | display: block; |
---|
[1741] | 2087 | float: right; |
---|
[2142] | 2088 | } |
---|
[2156] | 2089 | .modules dt { |
---|
| 2090 | font-weight: bold; |
---|
| 2091 | } |
---|
[2171] | 2092 | .modules a.module-details { |
---|
[2292] | 2093 | background: transparent url(search.png) no-repeat 2px center; |
---|
[2156] | 2094 | padding: 4px 4px 0 20px; |
---|
| 2095 | } |
---|
[2171] | 2096 | .modules a.module-support { |
---|
[2292] | 2097 | background: transparent url(help12.png) no-repeat 2px center; |
---|
[2156] | 2098 | padding: 4px 4px 0 20px; |
---|
| 2099 | } |
---|
[2354] | 2100 | .modules a.module-config { |
---|
[2489] | 2101 | background: transparent url(settings.png) no-repeat 2px 6px; |
---|
| 2102 | padding: 4px 4px 0 18px; |
---|
[2354] | 2103 | } |
---|
[2301] | 2104 | #m_search { |
---|
[2157] | 2105 | background: transparent url(search.png) no-repeat 4px center; |
---|
[2158] | 2106 | padding-left: 20px; |
---|
[2157] | 2107 | } |
---|
| 2108 | .modules tr.expand, .modules td.expand { |
---|
[2158] | 2109 | background: #f7f7f7; |
---|
[2157] | 2110 | border-color: #bee74b; |
---|
| 2111 | } |
---|
[2158] | 2112 | .modules tr.expand td:first-child { |
---|
[2157] | 2113 | font-weight: bold; |
---|
[2158] | 2114 | background: #DFE5E7; |
---|
[2157] | 2115 | } |
---|
| 2116 | .modules td.expand { |
---|
[2292] | 2117 | padding: 0 0 1em; |
---|
[2300] | 2118 | border-top: 1px solid #eaeaea; |
---|
[2157] | 2119 | } |
---|
[2292] | 2120 | .modules td.expand div { |
---|
| 2121 | display: inline-block; |
---|
| 2122 | vertical-align: top; |
---|
| 2123 | margin-right: 3em; |
---|
| 2124 | } |
---|
[2157] | 2125 | .mod-more, .mod-more li { |
---|
[2158] | 2126 | margin: .25em 0 0 1em; |
---|
[2157] | 2127 | padding: 0; |
---|
| 2128 | list-style-type: none; |
---|
| 2129 | } |
---|
[2158] | 2130 | .mod-more { |
---|
| 2131 | padding-top: .5em; |
---|
[1741] | 2132 | } |
---|
[2489] | 2133 | #plugin-update td { |
---|
| 2134 | vertical-align: baseline; |
---|
| 2135 | } |
---|
[1741] | 2136 | /* ---------------------------------------------------------- post.php, page.php */ |
---|
| 2137 | #entry-wrapper { |
---|
[3] | 2138 | float: left; |
---|
[1741] | 2139 | width: 100%; |
---|
[2123] | 2140 | margin-right: -16em; |
---|
[1741] | 2141 | } |
---|
| 2142 | #entry-content { |
---|
[2123] | 2143 | margin-right: 18em; |
---|
[1741] | 2144 | margin-left: 0; |
---|
| 2145 | } |
---|
[2334] | 2146 | #entry-sidebar { |
---|
| 2147 | width: 16em; |
---|
| 2148 | float: right; |
---|
| 2149 | } |
---|
[2301] | 2150 | #entry-sidebar h4 { |
---|
[2366] | 2151 | font-size: 1.08em; |
---|
[2301] | 2152 | margin-top: .3em; |
---|
| 2153 | } |
---|
| 2154 | #entry-sidebar select { |
---|
| 2155 | width: 100%; |
---|
| 2156 | } |
---|
| 2157 | #entry-sidebar input#post_position { |
---|
| 2158 | width: 4em; |
---|
| 2159 | } |
---|
| 2160 | .sb-box { |
---|
| 2161 | border-bottom: 1px solid #dfdfdf; |
---|
| 2162 | margin-bottom: 1em; |
---|
| 2163 | } |
---|
| 2164 | #tb_excerpt { |
---|
| 2165 | width: 100%; |
---|
| 2166 | } |
---|
[1741] | 2167 | /* ---------------------------------------------------------- preferences.php */ |
---|
[3] | 2168 | .fav-list { |
---|
| 2169 | list-style-type: none; |
---|
| 2170 | margin-left: 0; |
---|
| 2171 | padding-left: 0; |
---|
[1763] | 2172 | } |
---|
[2301] | 2173 | #my-favs .fav-list { |
---|
| 2174 | border-top: 1px solid #eee; |
---|
| 2175 | } |
---|
[3] | 2176 | .fav-list li { |
---|
| 2177 | margin-left: 0; |
---|
| 2178 | padding-left: 0; |
---|
[1763] | 2179 | padding-top: 3px; |
---|
| 2180 | padding-bottom: 3px; |
---|
[3] | 2181 | position: relative; |
---|
[1763] | 2182 | } |
---|
[2301] | 2183 | #my-favs .fav-list li { |
---|
| 2184 | line-height: 2; |
---|
| 2185 | border-bottom: 1px solid #eee; |
---|
| 2186 | padding-top: 3px; |
---|
| 2187 | padding-bottom: 3px; |
---|
| 2188 | position: relative; |
---|
| 2189 | } |
---|
| 2190 | .fav-list img { |
---|
| 2191 | vertical-align: middle; |
---|
| 2192 | margin-right: .2em; |
---|
| 2193 | } |
---|
| 2194 | .fav-list li span.zoom { |
---|
| 2195 | display: none; |
---|
| 2196 | } |
---|
| 2197 | .fav-list li:hover span.zoom { |
---|
| 2198 | display: block; |
---|
| 2199 | position: absolute; |
---|
| 2200 | bottom: 0; |
---|
| 2201 | left: 10em; |
---|
| 2202 | background-color: #f7f7f7; |
---|
| 2203 | border: 1px solid #dfdfdf; |
---|
| 2204 | padding: .2em; |
---|
| 2205 | border-radius: .5em; |
---|
| 2206 | } |
---|
[1767] | 2207 | #my-favs { |
---|
[2300] | 2208 | border-color: #9bca1c; |
---|
[1767] | 2209 | } |
---|
[2301] | 2210 | #my-favs input.position { |
---|
| 2211 | margin: 0 0 .4em .2em; |
---|
| 2212 | } |
---|
[1763] | 2213 | #available-favs input, #available-favs label, #available-favs label span { |
---|
| 2214 | white-space: normal; |
---|
| 2215 | display: inline; |
---|
| 2216 | } |
---|
[3] | 2217 | #available-favs label span.zoom { |
---|
| 2218 | display: none; |
---|
[1763] | 2219 | } |
---|
[3] | 2220 | #available-favs li:hover label span.zoom { |
---|
| 2221 | display: block; |
---|
| 2222 | position: absolute; |
---|
| 2223 | bottom: 0; |
---|
| 2224 | left: 10em; |
---|
[1749] | 2225 | background-color: #f7f7f7; |
---|
[2300] | 2226 | border: 1px solid #dfdfdf; |
---|
[3] | 2227 | padding: .2em; |
---|
| 2228 | border-radius: .5em; |
---|
[1763] | 2229 | } |
---|
[1741] | 2230 | #user-options label.ib { |
---|
| 2231 | display: inline-block; |
---|
| 2232 | width: 14em; |
---|
| 2233 | padding-right: 1em; |
---|
| 2234 | } |
---|
| 2235 | /* --------------------------------------------------------------------- user.php */ |
---|
| 2236 | .blog-perm { |
---|
[2342] | 2237 | padding-top: 2em; |
---|
| 2238 | } |
---|
| 2239 | .blog-perm { |
---|
[1741] | 2240 | margin-top: 2em; |
---|
| 2241 | font-weight: bold; |
---|
| 2242 | } |
---|
| 2243 | .ul-perm { |
---|
| 2244 | list-style-type: square; |
---|
| 2245 | margin-left: 0; |
---|
| 2246 | padding-left: 3.5em; |
---|
| 2247 | margin-bottom: 0 |
---|
| 2248 | } |
---|
| 2249 | .add-perm { |
---|
| 2250 | padding-top: .5em; |
---|
| 2251 | padding-left: 2.5em; |
---|
| 2252 | margin-left: 0; |
---|
| 2253 | } |
---|
[2111] | 2254 | /* --------------------------------------------------------------------- _charte.php */ |
---|
| 2255 | .guideline #content h2 { |
---|
| 2256 | color: #D33800; |
---|
| 2257 | padding: 2em 0 0 0; |
---|
| 2258 | margin: 1em 0; |
---|
| 2259 | font-size: 2em; |
---|
| 2260 | } |
---|
[2342] | 2261 | .guideline #content h2:first-child { |
---|
| 2262 | margin-top: 0; |
---|
| 2263 | padding-top: .5em; |
---|
| 2264 | } |
---|
[2111] | 2265 | .guideline h3 { |
---|
| 2266 | margin-top: 2em; |
---|
| 2267 | } |
---|
[2308] | 2268 | .guideline .dc-update h3 { |
---|
| 2269 | margin-top: 0; |
---|
| 2270 | } |
---|
[2111] | 2271 | .guideline .one-box .box { |
---|
[2301] | 2272 | border: 1px solid #dfdfdf; |
---|
[2111] | 2273 | padding: 2px .5em; |
---|
| 2274 | } |
---|
[2351] | 2275 | .guideline #main-menu ul { |
---|
| 2276 | margin: 0; |
---|
| 2277 | padding: 0; |
---|
| 2278 | font-weight: normal; |
---|
| 2279 | } |
---|
| 2280 | .guideline #main-menu li { |
---|
| 2281 | padding-left: 1em; |
---|
| 2282 | } |
---|
[1741] | 2283 | /* ------------------------------------------------------------------------------------ |
---|
| 2284 | CLASSES |
---|
| 2285 | ------------------------------------------------------------------------------------ */ |
---|
[1035] | 2286 | /* jQuery Autocomplete plugin */ |
---|
| 2287 | .ac_results { |
---|
| 2288 | padding: 0px; |
---|
| 2289 | border: 1px dotted #f90; |
---|
| 2290 | background-color: white; |
---|
| 2291 | overflow: hidden; |
---|
| 2292 | z-index: 99999; |
---|
[1741] | 2293 | } |
---|
[1035] | 2294 | .ac_results ul { |
---|
| 2295 | width: 100%; |
---|
| 2296 | list-style-position: outside; |
---|
| 2297 | list-style: none; |
---|
[0] | 2298 | padding: 0; |
---|
[500] | 2299 | margin: 0; |
---|
| 2300 | } |
---|
[2301] | 2301 | .ac_results li { |
---|
| 2302 | margin: 0px; |
---|
| 2303 | padding: 2px 5px; |
---|
| 2304 | cursor: default; |
---|
| 2305 | display: block; |
---|
| 2306 | font-size: 1em; |
---|
| 2307 | line-height: 16px; |
---|
| 2308 | overflow: hidden; |
---|
| 2309 | } |
---|
[1035] | 2310 | .ac_loading { |
---|
| 2311 | background: transparent url('loader.gif') right center no-repeat; |
---|
[1741] | 2312 | } |
---|
[1035] | 2313 | .ac_over { |
---|
[2300] | 2314 | background-color: #2373A8; |
---|
[1035] | 2315 | color: white; |
---|
[1741] | 2316 | } |
---|
| 2317 | /* password indicator */ |
---|
| 2318 | .pw-table { |
---|
| 2319 | display: table; |
---|
| 2320 | margin-bottom: 1em; |
---|
| 2321 | } |
---|
| 2322 | .pw-cell { |
---|
| 2323 | display: table-cell; |
---|
| 2324 | margin-bottom: 1em; |
---|
| 2325 | } |
---|
| 2326 | #pwindicator { |
---|
| 2327 | display: table-cell; |
---|
| 2328 | vertical-align: bottom; |
---|
| 2329 | padding-left: 1.5em; |
---|
| 2330 | height: 3.8em; |
---|
| 2331 | } |
---|
[2301] | 2332 | #pwindicator .bar { |
---|
| 2333 | height: 6px; |
---|
| 2334 | margin-bottom: 4px; |
---|
| 2335 | } |
---|
| 2336 | .pw-very-weak .bar { |
---|
| 2337 | background: #b33630; |
---|
| 2338 | width: 30px; |
---|
| 2339 | } |
---|
| 2340 | .pw-weak .bar { |
---|
| 2341 | background: #b33630; |
---|
| 2342 | width: 60px; |
---|
| 2343 | } |
---|
| 2344 | .pw-mediocre .bar { |
---|
| 2345 | background: #f90; |
---|
| 2346 | width: 90px; |
---|
| 2347 | } |
---|
| 2348 | .pw-strong .bar { |
---|
| 2349 | background: #9bca1c; |
---|
| 2350 | width: 120px; |
---|
| 2351 | } |
---|
| 2352 | .pw-very-strong .bar { |
---|
| 2353 | background: #9bca1c; |
---|
| 2354 | width: 150px; |
---|
| 2355 | } |
---|
[1741] | 2356 | /* ------------------------------------------------------------------ navigation */ |
---|
| 2357 | /* selects accès rapide */ |
---|
| 2358 | .anchor-nav { |
---|
| 2359 | background: #ecf0f1; |
---|
| 2360 | color: #000; |
---|
| 2361 | padding: 4px 1em; |
---|
| 2362 | } |
---|
[2068] | 2363 | .anchor-nav label { |
---|
| 2364 | vertical-align: bottom; |
---|
| 2365 | } |
---|
[1741] | 2366 | /* nav links */ |
---|
| 2367 | .nav_prevnext { |
---|
[1415] | 2368 | margin-bottom: 2em; |
---|
[1741] | 2369 | color: #fff; |
---|
| 2370 | } |
---|
[2301] | 2371 | .nav_prevnext a, a.back { |
---|
[2523] | 2372 | color: #2373A8; |
---|
[2301] | 2373 | border: 1px solid #dfdfdf; |
---|
| 2374 | padding: 2px 1.5em; |
---|
| 2375 | border-radius: .75em; |
---|
| 2376 | background-color: #f3f3f3; |
---|
| 2377 | } |
---|
| 2378 | a.back:before { |
---|
| 2379 | content: "\ab\a0"; |
---|
| 2380 | } |
---|
| 2381 | a.onblog_link { |
---|
| 2382 | color: #333; |
---|
| 2383 | float: right; |
---|
| 2384 | border: 1px solid #eee; |
---|
| 2385 | padding: 2px 1.5em; |
---|
| 2386 | border-radius: .75em; |
---|
| 2387 | background-color: #ECF0F1; |
---|
| 2388 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); |
---|
| 2389 | } |
---|
[1741] | 2390 | /* Pagination */ |
---|
[1932] | 2391 | .pager { |
---|
[1918] | 2392 | margin: 2em 0 1em 0; |
---|
[1464] | 2393 | clear: left; |
---|
[1741] | 2394 | } |
---|
[1932] | 2395 | .pager ul { |
---|
[1917] | 2396 | list-style-type: none; |
---|
[1918] | 2397 | margin: 0; |
---|
[1917] | 2398 | padding: 0; |
---|
| 2399 | } |
---|
[1932] | 2400 | .pager li, .pager input { |
---|
[2301] | 2401 | display: inline-block; |
---|
[1917] | 2402 | vertical-align: middle; |
---|
[1918] | 2403 | margin: 0 .33em 0 0; |
---|
| 2404 | padding: 0; |
---|
[1917] | 2405 | text-align: center; |
---|
| 2406 | } |
---|
[2301] | 2407 | .pager .btn { |
---|
| 2408 | border: 1px solid #dfdfdf; |
---|
| 2409 | background-color: #fcfcfc; |
---|
| 2410 | color: #676e78; |
---|
| 2411 | border-radius: 3px; |
---|
| 2412 | overflow: hidden; |
---|
| 2413 | } |
---|
| 2414 | .btn.no-link { |
---|
| 2415 | border-color: #dfdfdf; |
---|
| 2416 | background-color: #f9f9f9; |
---|
| 2417 | padding: 1px 3px 0; |
---|
| 2418 | } |
---|
| 2419 | .pager .active { |
---|
| 2420 | padding: 4px 12px; |
---|
| 2421 | color: #676e78; |
---|
| 2422 | } |
---|
| 2423 | .pager .direct-access { |
---|
| 2424 | margin-left: 2em; |
---|
| 2425 | } |
---|
| 2426 | .direct-access input[type=text] { |
---|
| 2427 | border: 1px solid #dfdfdf; |
---|
| 2428 | padding: 3px 8px; |
---|
| 2429 | margin-left: .25em; |
---|
| 2430 | background-color: #fff; |
---|
| 2431 | } |
---|
| 2432 | .direct-access input[type=submit] { |
---|
| 2433 | padding: 3px 6px; |
---|
| 2434 | } |
---|
[1932] | 2435 | .pager a { |
---|
[1917] | 2436 | display: block; |
---|
[1918] | 2437 | padding: 1px 3px 0; |
---|
[2301] | 2438 | border: none; |
---|
[1917] | 2439 | } |
---|
[1932] | 2440 | .pager a:hover, .pager a:focus { |
---|
| 2441 | background-color: #ecf0f1; |
---|
| 2442 | } |
---|
[2291] | 2443 | .index .btn.no-link, .index a { |
---|
| 2444 | padding: 2px 8px 3px; |
---|
| 2445 | font-variant: small-caps; |
---|
| 2446 | } |
---|
[2334] | 2447 | .index li {margin-bottom: 3px;} |
---|
[2291] | 2448 | .index a { |
---|
| 2449 | font-weight: bold; |
---|
| 2450 | } |
---|
| 2451 | .index .btn.no-link { |
---|
| 2452 | color: #ccc; |
---|
| 2453 | } |
---|
[2294] | 2454 | .index .active { |
---|
[2301] | 2455 | padding: 4px 8px; |
---|
[2291] | 2456 | color: #fff; |
---|
| 2457 | background: #676e78; |
---|
[2301] | 2458 | border-radius: 3px; |
---|
[2291] | 2459 | font-variant: small-caps; |
---|
| 2460 | } |
---|
[1747] | 2461 | /* Etapes */ |
---|
| 2462 | .step { |
---|
| 2463 | display: inline-block; |
---|
| 2464 | float: left; |
---|
| 2465 | margin: 3px 10px 2px 0; |
---|
| 2466 | padding: 5px .5em; |
---|
| 2467 | background: #ecf0f1; |
---|
| 2468 | border-radius: 3px; |
---|
[500] | 2469 | font-weight: bold; |
---|
[2300] | 2470 | border: 1px solid #c5c5c5; |
---|
| 2471 | color: #676e78; |
---|
[1747] | 2472 | } |
---|
[1741] | 2473 | /* ---------------------------------------------------------------- utilisables partout */ |
---|
[2301] | 2474 | .legible { |
---|
| 2475 | font-size: 1.16em; |
---|
| 2476 | max-width: 62em; |
---|
| 2477 | } |
---|
[1741] | 2478 | .fieldset { |
---|
| 2479 | background: #fff; |
---|
[2300] | 2480 | border: 1px solid #c5c5c5; |
---|
[1741] | 2481 | border-radius: 3px; |
---|
| 2482 | padding: 1em .7em .5em; |
---|
[1375] | 2483 | margin-bottom: 1em; |
---|
[1741] | 2484 | } |
---|
[2301] | 2485 | .fieldset h3 { |
---|
| 2486 | margin-top: 0; |
---|
| 2487 | } |
---|
[1749] | 2488 | .right, .txt-right { |
---|
[1741] | 2489 | text-align: right; |
---|
| 2490 | } |
---|
| 2491 | .txt-center { |
---|
| 2492 | text-align: center; |
---|
| 2493 | } |
---|
[1749] | 2494 | .txt-left { |
---|
| 2495 | text-align: left; |
---|
| 2496 | } |
---|
[1741] | 2497 | .no-margin, label.no-margin { |
---|
| 2498 | margin-top: 0; |
---|
| 2499 | margin-bottom: 0; |
---|
| 2500 | } |
---|
[1862] | 2501 | .vertical-separator { |
---|
[1741] | 2502 | margin-top: 2em; |
---|
| 2503 | } |
---|
[2301] | 2504 | p.clear.vertical-separator { |
---|
| 2505 | padding-top: 2em; |
---|
| 2506 | } |
---|
[1741] | 2507 | .border-top { |
---|
| 2508 | border-top: 1px solid #999; |
---|
| 2509 | padding-top: 1em; |
---|
[2301] | 2510 | margin-top: 1em; |
---|
[1741] | 2511 | } |
---|
| 2512 | .grid { |
---|
| 2513 | background: transparent repeat url('grid.png') 0 0; |
---|
| 2514 | } |
---|
| 2515 | ul.nice { |
---|
| 2516 | margin: 1em 0; |
---|
| 2517 | padding: 0 0 0 2em; |
---|
| 2518 | list-style: square; |
---|
| 2519 | } |
---|
[2301] | 2520 | ul.nice li { |
---|
| 2521 | margin: 0; |
---|
| 2522 | padding: 0; |
---|
| 2523 | } |
---|
[1908] | 2524 | ul.from-left { |
---|
| 2525 | list-style-type: none; |
---|
| 2526 | padding-left: 0; |
---|
[2301] | 2527 | margin: 1em 0; |
---|
| 2528 | } |
---|
| 2529 | ul.from-left > li { |
---|
| 2530 | margin-top: 1em; |
---|
| 2531 | margin-bottom: 1em; |
---|
| 2532 | } |
---|
| 2533 | ul.from-left ul { |
---|
| 2534 | list-style-type: square; |
---|
| 2535 | } |
---|
[1741] | 2536 | .offline { |
---|
[1760] | 2537 | color: #676e78; |
---|
[1741] | 2538 | } |
---|
[1599] | 2539 | /* caché pour tout le monde */ |
---|
[1821] | 2540 | .hide, .button.hide { |
---|
[2264] | 2541 | display: none !important; |
---|
[1741] | 2542 | } |
---|
[1599] | 2543 | /* Caché sauf pour les revues d'écran */ |
---|
[1789] | 2544 | .hidden, .with-js .out-of-screen-if-js { |
---|
[1842] | 2545 | position: absolute !important; |
---|
[2301] | 2546 | clip: rect(1px 1px 1px 1px); |
---|
| 2547 | /* IE6, IE7 */ |
---|
[1842] | 2548 | clip: rect(1px, 1px, 1px, 1px); |
---|
| 2549 | padding: 0 !important; |
---|
| 2550 | border: 0 !important; |
---|
| 2551 | height: 1px !important; |
---|
| 2552 | width: 1px !important; |
---|
| 2553 | overflow: hidden; |
---|
| 2554 | } |
---|
[1599] | 2555 | /* caché si js est inactif */ |
---|
| 2556 | .no-js .hidden-if-no-js { |
---|
[1842] | 2557 | display: none; |
---|
[1741] | 2558 | } |
---|
[1599] | 2559 | /* caché si js est actif */ |
---|
[1842] | 2560 | .with-js .hidden-if-js { |
---|
| 2561 | display: none; |
---|
[1741] | 2562 | } |
---|
| 2563 | /* ------------------------------------------------------------------------------------ |
---|
| 2564 | UTILS |
---|
| 2565 | ------------------------------------------------------------------------------------ */ |
---|
| 2566 | /* debug */ |
---|
| 2567 | #debug { |
---|
| 2568 | position: absolute; |
---|
| 2569 | top: 0; |
---|
| 2570 | width: 100%; |
---|
| 2571 | height: 4px; |
---|
[2300] | 2572 | background: #ffd478; |
---|
[1741] | 2573 | } |
---|
| 2574 | #debug div { |
---|
[500] | 2575 | display: none; |
---|
[1741] | 2576 | padding: 3px 0.5em 2px; |
---|
| 2577 | } |
---|
| 2578 | #debug p { |
---|
| 2579 | margin: 0.5em 0; |
---|
| 2580 | } |
---|
| 2581 | #debug:hover { |
---|
| 2582 | height: auto; |
---|
[2096] | 2583 | padding: 2px 1em; |
---|
| 2584 | z-index: 100; |
---|
[1741] | 2585 | } |
---|
| 2586 | #debug:hover div { |
---|
| 2587 | display: block; |
---|
| 2588 | } |
---|
[2224] | 2589 | .debug { |
---|
[2300] | 2590 | background: #ffd478; |
---|
[2224] | 2591 | padding: 3px 0.5em 2px; |
---|
[2227] | 2592 | } |
---|
[2241] | 2593 | input[type=submit].delete.debug, a.delete.debug { |
---|
[2300] | 2594 | border-color: #ffd478; |
---|
[2282] | 2595 | } |
---|
| 2596 | input[type=submit].delete.debug:hover, a.delete.debug:hover { |
---|
[2300] | 2597 | background: #ffd478; |
---|
| 2598 | color: #900; |
---|
| 2599 | border-color: #ffd478; |
---|
[2241] | 2600 | } |
---|
[2566] | 2601 | /* ---------------------------------------------- Couleurs ajoutées via javascript |
---|
[2101] | 2602 | /* color-picker.js */ |
---|
[2566] | 2603 | .color-color-picker { |
---|
[2101] | 2604 | border: 1px solid #000; |
---|
[2566] | 2605 | width: 195px; |
---|
| 2606 | background: #fff; |
---|
[2110] | 2607 | } |
---|
[2101] | 2608 | /* _media_item.js */ |
---|
[2566] | 2609 | .color-div { |
---|
[2101] | 2610 | border: 1px solid #ccc; |
---|
[2110] | 2611 | } |
---|
| 2612 | /* fadings ('color' est utilisé comme variable, pas comme text color) */ |
---|
[2566] | 2613 | .colorBeginPassword, |
---|
| 2614 | .colorBeginValidatorErr, |
---|
[2308] | 2615 | .colorBeginUserMail { color: #fff; } |
---|
[2566] | 2616 | .colorEndPassword, |
---|
| 2617 | .colorEndError, |
---|
| 2618 | .colorEndValidatorErr, |
---|
[2308] | 2619 | .colorEndUserMail { color: #ffbaba; } |
---|
| 2620 | .colorBeginMessage { color: #ccc; } |
---|
[2566] | 2621 | .colorEndMessage, |
---|
[2308] | 2622 | .colorBeginValidatorMsg { color: #676e78; } |
---|
| 2623 | .colorBeginError { color: #fefacd; } |
---|
| 2624 | .colorBeginSuccess { color: #9BCA1C; } |
---|
| 2625 | .colorEndSuccess { color: #bee74b; } |
---|
| 2626 | .colorEndValidatorMsg { color: #ffcc00; } |
---|
[2152] | 2627 | /* ------------------------------------------------------------------------------------ |
---|
| 2628 | UN POIL DE MEDIA QUERIES |
---|
| 2629 | ------------------------------------------------------------------------------------ */ |
---|
[2434] | 2630 | @media screen and (min-width: 80em) { |
---|
[2461] | 2631 | #wrapper { |
---|
| 2632 | background: #F7F7F7 url(bg_wrapper.png) repeat-y 18em; |
---|
[2465] | 2633 | } |
---|
[2434] | 2634 | #main { |
---|
[2456] | 2635 | margin-left: -17em; |
---|
[2434] | 2636 | } |
---|
| 2637 | #content { |
---|
[2456] | 2638 | margin: 0 0 0 17em; |
---|
[2434] | 2639 | } |
---|
| 2640 | #main-menu { |
---|
[2456] | 2641 | width: 17em; |
---|
[2434] | 2642 | } |
---|
| 2643 | #collapser { |
---|
[2456] | 2644 | left: 17em; |
---|
[2434] | 2645 | } |
---|
| 2646 | h1 { |
---|
[2456] | 2647 | width: 19.5em; |
---|
[2434] | 2648 | } |
---|
| 2649 | } |
---|
[2429] | 2650 | @media screen and (max-width: 61em) { |
---|
[2301] | 2651 | #top-info-blog #switchblog { |
---|
| 2652 | max-width: 16em; |
---|
| 2653 | } |
---|
| 2654 | #top-info-blog a { |
---|
| 2655 | margin-left: 2em; |
---|
| 2656 | } |
---|
| 2657 | #header { |
---|
| 2658 | display: block; |
---|
| 2659 | width: 100%; |
---|
| 2660 | text-align: right; |
---|
| 2661 | background: #333; |
---|
| 2662 | } |
---|
| 2663 | #header h1, #header h1 a { |
---|
| 2664 | width: 120px; |
---|
| 2665 | padding: 0; |
---|
| 2666 | margin: 0; |
---|
| 2667 | } |
---|
| 2668 | h1, #top-info-blog { |
---|
| 2669 | display: inline-block; |
---|
| 2670 | vertical-align: top; |
---|
| 2671 | margin-right: 1em; |
---|
| 2672 | } |
---|
| 2673 | #top-info-user { |
---|
| 2674 | display: block; |
---|
| 2675 | width: 100%; |
---|
| 2676 | background: #676e78; |
---|
| 2677 | padding-right: 0; |
---|
| 2678 | } |
---|
| 2679 | #top-info-user li:last-child { |
---|
| 2680 | padding-right: 1em; |
---|
| 2681 | } |
---|
| 2682 | #top-info-user a.active { |
---|
| 2683 | padding: 2px 8px; |
---|
| 2684 | background: #999; |
---|
| 2685 | color: #FFF; |
---|
| 2686 | border-width: 0; |
---|
| 2687 | border-radius: 6px; |
---|
| 2688 | } |
---|
| 2689 | .three-boxes, .three-boxes .box, |
---|
[2152] | 2690 | .two-cols .col70, .two-cols .col30 { |
---|
[2301] | 2691 | width: 100%; |
---|
| 2692 | margin-left: 0; |
---|
| 2693 | margin-right: 0; |
---|
| 2694 | } |
---|
| 2695 | } |
---|
[2462] | 2696 | @media screen and (max-width: 48em) { |
---|
| 2697 | #dashboard-boxes .box.medium, .box.medium, |
---|
| 2698 | #dashboard-boxes .box.small, .box.small, |
---|
| 2699 | #dashboard-boxes .box.large, .box.large { |
---|
| 2700 | width: 95%; |
---|
| 2701 | margin: 10px auto; |
---|
| 2702 | } |
---|
| 2703 | } |
---|
[2429] | 2704 | @media screen and (max-width: 44em) { |
---|
[2301] | 2705 | #help-button { |
---|
| 2706 | height: 26px; |
---|
| 2707 | width: 26px; |
---|
| 2708 | background-color: #A2CBE9; |
---|
| 2709 | padding: 0; |
---|
| 2710 | margin: 0; |
---|
[2366] | 2711 | font-size: .83em; |
---|
[2301] | 2712 | line-height: 68px; |
---|
| 2713 | overflow: hidden; |
---|
| 2714 | } |
---|
| 2715 | #content.with-help #help-button { |
---|
| 2716 | top: 77px; |
---|
| 2717 | } |
---|
[2384] | 2718 | .one-box, .two-boxes, .box, |
---|
[2152] | 2719 | .two-cols .col { |
---|
[2430] | 2720 | width: 96%; |
---|
[2301] | 2721 | margin-left: 0; |
---|
| 2722 | margin-right: 0; |
---|
| 2723 | } |
---|
[2334] | 2724 | #entry-wrapper { |
---|
| 2725 | float: none; |
---|
| 2726 | width: 100%; |
---|
| 2727 | margin-right: 0; |
---|
| 2728 | } |
---|
| 2729 | #entry-content { |
---|
| 2730 | margin-right: 0; |
---|
| 2731 | margin-left: 0; |
---|
| 2732 | } |
---|
| 2733 | #entry-sidebar { |
---|
| 2734 | width: 100%; |
---|
| 2735 | float: none; |
---|
| 2736 | } |
---|
[2301] | 2737 | } |
---|
[2429] | 2738 | @media screen and (max-width: 38em) { |
---|
[2301] | 2739 | #header h1, #header h1 a { |
---|
| 2740 | width: 42px !important; |
---|
| 2741 | height: 42px; |
---|
| 2742 | } |
---|
| 2743 | h1 a:link { |
---|
[2420] | 2744 | background: transparent url(dc_logos/b-dotclear120.png) no-repeat -270px 6px; |
---|
[2301] | 2745 | border-right: 1px solid #ccc; |
---|
| 2746 | } |
---|
| 2747 | h1 a:hover, h1 a:focus { |
---|
[2420] | 2748 | background: url(dc_logos/b-dotclear120.png) no-repeat -270px -94px; |
---|
[2301] | 2749 | border-right: 1px solid #A2CBE9; |
---|
| 2750 | } |
---|
| 2751 | #wrapper, #main, #main-menu { |
---|
| 2752 | display: block; |
---|
| 2753 | float: none; |
---|
| 2754 | width: 100%; |
---|
| 2755 | margin: 0; |
---|
| 2756 | } |
---|
[2430] | 2757 | #dashboard-main { |
---|
| 2758 | padding: 0; |
---|
| 2759 | } |
---|
[2301] | 2760 | #main-menu a { |
---|
| 2761 | display: block; |
---|
| 2762 | width: 100%; |
---|
| 2763 | } |
---|
| 2764 | #main-menu h3 a { |
---|
| 2765 | display: inline; |
---|
| 2766 | } |
---|
| 2767 | #content, .hide-mm #content { |
---|
| 2768 | margin: 0; |
---|
| 2769 | padding: 0 .5em !important; |
---|
| 2770 | } |
---|
| 2771 | #collapser { |
---|
| 2772 | display: none; |
---|
| 2773 | } |
---|
| 2774 | #main #content > h2 { |
---|
[2456] | 2775 | margin: 0 -.5em 1em; |
---|
| 2776 | padding: 6px 30px 4px .5em; |
---|
[2301] | 2777 | } |
---|
[2384] | 2778 | #dashboard-boxes .box.medium, .box.medium, |
---|
| 2779 | #dashboard-boxes .box.small, .box.small, |
---|
| 2780 | #dashboard-boxes .box.large, .box.large { |
---|
[2446] | 2781 | width: 95%; |
---|
[2301] | 2782 | margin: 10px auto; |
---|
| 2783 | } |
---|
[2435] | 2784 | .cell, #filters-form .cell { |
---|
| 2785 | display: inline-block; |
---|
| 2786 | border: none; |
---|
| 2787 | padding: 1em; |
---|
| 2788 | vertical-align: bottom; |
---|
| 2789 | } |
---|
[2530] | 2790 | .pseudo-tabs li { |
---|
| 2791 | display: block; |
---|
| 2792 | float: left; |
---|
| 2793 | width: 50%; |
---|
| 2794 | border-top: 1px solid #ddd; |
---|
| 2795 | padding: .25em; |
---|
| 2796 | } |
---|
| 2797 | .pseudo-tabs li:first-child, .pseudo-tabs li:nth-of-type(2) { |
---|
| 2798 | border-top: none; |
---|
| 2799 | } |
---|
[2301] | 2800 | } |
---|
[2429] | 2801 | @media screen and (max-width: 26.5em) { |
---|
[2301] | 2802 | h1, h1 a { |
---|
| 2803 | padding: 0; |
---|
| 2804 | border-right: #333 !important; |
---|
| 2805 | } |
---|
| 2806 | #top-info-blog label, .nomobile { |
---|
| 2807 | display: none; |
---|
| 2808 | } |
---|
| 2809 | #top-info-blog { |
---|
| 2810 | margin-bottom: .5em; |
---|
| 2811 | max-width: 75%; |
---|
| 2812 | } |
---|
| 2813 | #top-info-blog select { |
---|
| 2814 | margin-bottom: .5em; |
---|
| 2815 | } |
---|
[2446] | 2816 | #wrapper { |
---|
| 2817 | font-size: 1.4em; |
---|
| 2818 | } |
---|
[2301] | 2819 | #content.with-help #help-button { |
---|
[2446] | 2820 | top: 120px; |
---|
| 2821 | right: 20.5em; |
---|
| 2822 | } |
---|
| 2823 | #content.with-help #help { |
---|
| 2824 | font-size: 12px; |
---|
[2301] | 2825 | } |
---|
[2456] | 2826 | p.top-add { |
---|
| 2827 | margin-bottom: .5em; |
---|
| 2828 | text-align: center; |
---|
| 2829 | } |
---|
[2443] | 2830 | .multi-part { |
---|
| 2831 | padding-left: 0; |
---|
| 2832 | } |
---|
| 2833 | .part-tabs ul { |
---|
| 2834 | margin: 1em 0; |
---|
| 2835 | padding: 0 .5em; |
---|
| 2836 | } |
---|
| 2837 | .part-tabs li a { |
---|
| 2838 | display: block; |
---|
| 2839 | width: 100%; |
---|
| 2840 | } |
---|
[2430] | 2841 | #icons p { |
---|
[2446] | 2842 | width: 9em; |
---|
| 2843 | padding: 1em .25em; |
---|
[2430] | 2844 | } |
---|
| 2845 | .media-item { |
---|
| 2846 | width: 90%; |
---|
| 2847 | } |
---|
[2460] | 2848 | #theme-new, #theme-activate, #theme-deactivate { |
---|
| 2849 | margin-left: 0; |
---|
| 2850 | margin-right: 0; |
---|
| 2851 | } |
---|
[2443] | 2852 | .box.current-theme { |
---|
| 2853 | margin: 5px; |
---|
| 2854 | padding: 10px; |
---|
| 2855 | width: 100%; |
---|
| 2856 | } |
---|
| 2857 | .current-theme .module-sshot img { |
---|
| 2858 | margin: 0; |
---|
| 2859 | float: none; |
---|
| 2860 | max-width: 100%; |
---|
| 2861 | } |
---|
[2460] | 2862 | table .maximal { |
---|
[2462] | 2863 | min-width: 14em; |
---|
[2460] | 2864 | } |
---|
| 2865 | th, td { |
---|
| 2866 | padding: 0.3em 1em 0.3em 0; |
---|
| 2867 | } |
---|
[2530] | 2868 | .pseudo-tabs li { |
---|
| 2869 | display: block; |
---|
| 2870 | width: 100%; |
---|
| 2871 | float: none; |
---|
| 2872 | border-top: 1px solid #ddd !important; |
---|
| 2873 | } |
---|
| 2874 | .pseudo-tabs li:first-child { |
---|
| 2875 | border-top: none; |
---|
| 2876 | } |
---|
[2461] | 2877 | } |
---|