Dotclear

source: admin/style/default.css @ 2518:eb805ec4ea0b

Revision 2518:eb805ec4ea0b, 56.1 KB checked in by Anne Kozlika <kozlika@…>, 12 years ago (diff)

More discrete (but still visible) focus: change color, delete focus border on big dashboard icons.

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

Sites map