source: trunk/admin/themes/default/theme.css @ 29539

Last change on this file since 29539 was 29539, checked in by mistic100, 10 years ago

use fontello for every checkbox on config screens + split configuration.tpl file

  • Property svn:eol-style set to LF
File size: 27.7 KB
Line 
1/* content.css */
2[class*="icon-"]:before { text-decoration:none !important; }
3
4.showInfo { font-size:15px;cursor:pointer;line-height:15px; }
5
6/* .Content  is on every pages so it is common and it will no longer be a specific css */
7.content h2 {margin: 0; padding: 5px 0.5em 5px 0.5em; text-align: right; font-size: 120%;}
8.content .navigationBar { margin: 10px 0; text-align: center; }
9.content form { text-align: left; }
10.content dt { margin-bottom: 5px; font-style: italic;
11  font-size: 110%; }
12ul.categoryActions { margin: 0 2px; width: auto; list-style-position:outside;
13  padding: 0; text-indent: 0; list-style: none; text-align: center; }
14.content div.titrePage { padding: 0 0 3px; }
15.content div.comment { margin: 0 0 0.5em 0; padding: 0;
16  overflow: hidden; width: 100%;        /* don't ask why. It's a very usefull trick  */ }
17
18.content DIV.comment A.illustration {
19        display: block;
20        float: left;
21        margin: 0.5em 30px 0 0.5em;
22}
23
24.content div.comment p.commentHeader {
25  text-align: right; margin: 0.5em 0.5em 0 0; }
26.content div.comment ul.actions { text-align: center; margin: 0.2em; }
27.content div.comment blockquote {
28  margin-right: 0.5em; overflow: visible; /*avoid a very strange margin behaviour (all browsers) */ }
29
30.commentFilterSelected {color:#666;text-decoration:underline;}
31.comment .pendingFlag {font-style:italic;color:red;}
32
33/* not used but should be */
34#thePopuphelpPage .content { margin: 1em; }
35
36/* thumbnails.css */
37UL.thumbnails {
38  margin: 0; padding: 0; list-style: none;
39  text-align: center;   /* to center the whole collection in .content */
40  float: left;
41}
42UL.thumbnails LI { display: inline }
43UL.thumbnails li.rank-of-image {
44  float: left;
45  background-color: #333;
46  color: #666;
47  border-radius: 5px;
48  display: block;
49  width: 120px;
50  height: 120px;
51  cursor: move;
52  margin: 4px;
53        overflow: hidden;
54}
55.clipwrapper {
56  position:relative;
57  width: 96px;
58  height: 96px;
59  margin: 3px;
60}
61.clip {
62  position:absolute;
63}
64
65UL.thumbnails SPAN.wrap1 {
66  margin: 5px;
67  display: table-cell; display: inline-table;
68  display: inline-block; /* Why 3 display option ??? */
69  vertical-align: top;          /* OK with Opera and IE6 not Geko */
70  text-align: center;           /* to center the thumbnail and legend in Geko/Opera */
71}
72UL.thumbnails SPAN.wrap2 {
73  margin: 0;                    /* important reset the margins */
74  display: table-cell;          /* block prevents vertical-align here */
75  vertical-align: middle;       /* Ok with Opera and Geko not IE6 */
76        border-radius: 4px;
77}
78UL.thumbnails LABEL {
79        position: relative;
80        display: block; 
81        border-bottom: none;
82}
83
84UL.thumbnails IMG {
85        vertical-align: middle;
86        margin-top: 12px;
87}
88
89UL.thumbnails INPUT {
90  position: absolute;
91  left: 2px; top: 2px;
92}
93UL.thumbnails .levelIndicatorB {
94display:block; position:absolute; z-index:100; padding:7px 0 0 2px; color:black; font-weight:bold; font-size:120%;
95}
96UL.thumbnails .levelIndicatorF {
97display:block; position:absolute; z-index:101; padding:8px 0 0 3px; color:white; font-weight:bold; font-size:120%;
98}
99
100/* default-layout.css */
101
102/* History tables */
103TABLE.table2 {
104        border: 1px solid #111;
105        margin: 0 auto;
106        padding: 0;
107}
108
109TABLE.table2 TD, TABLE.table2 TH {
110        padding: 0 5px;
111}
112
113TABLE.table2 TR {
114        text-align: left;
115}
116
117TABLE.table2 THEAD TD { padding:7px 10px 3px 10px; }
118TABLE.table2 TR.throw { text-align: center; }
119.sort { display:block; padding:8px 5px 0px 1px; clear: right; float:left; }
120
121
122.hour {
123        white-space: pre;
124}
125
126.number {
127        text-align: right;
128}
129
130TABLE#dailyStats {
131        width: 60%;
132}
133
134TABLE#detailedStats {
135        width: 99%;
136}
137
138/* Plugins, languages tables */
139TABLE.plugins,
140TABLE.languages {
141  min-width: 500px;
142}
143TABLE.plugins A { border: 0; }
144TABLE.plugins TR TD { padding: 4px 10px; }
145TABLE.languages TR TD { padding: 7px 20px; }
146
147
148/* categoryOrdering */
149FORM#categoryOrdering .orderParams {
150  line-height:30px;
151  margin-bottom:10px;
152}
153
154SELECT.categoryList {
155        width: 100%;
156}
157
158FORM#categoryOrdering p {
159        text-align: left;
160        /* margin-top: 1em; */
161        /* margin-bottom: 1em; */
162}
163UL.categoryUl {
164        list-style: none;
165        padding: 0;
166        margin: 1em;
167}
168
169LI.categoryLi {
170/*
171        width: 100%;
172*/
173        padding: 5px;
174        margin-bottom: 5px;
175  border-radius:5px;
176}
177
178
179/* menuOrdering */
180FORM#menuOrdering {
181        padding-left: 1em;
182        padding-right: 1em;
183}
184FORM#menuOrdering p {
185        text-align: left;
186        margin: 0 10px;
187}
188FORM#menuOrdering p span {
189        float:right;
190}
191FORM#menuOrdering input {
192        vertical-align: middle;
193  margin:0 10px;
194}
195FORM#menuOrdering .menuAuthor {
196  margin: 5px 0 0 40px;
197}
198FORM#menuOrdering .menuSubmit {
199  margin: 20px 0;
200}
201
202UL.menuUl {
203        list-style: none;
204        padding: 0;
205        margin: 0;
206}
207
208LI.menuLi {
209        width: 100%;
210        border: 1px solid #666;
211        padding: 12px 0;
212        margin-bottom: 5px;
213}
214/* */
215
216FORM#catModify TABLE { width: auto; }
217
218#catModify p {
219  line-height: 20px;
220  margin: 0 0 1.5em;
221  text-align: left;
222}
223
224FIELDSET.elementEdit .thumb {
225        display: block;
226        float: right;
227        text-align: center;
228}
229
230TABLE.doubleSelect {
231        text-align: center;
232        margin: 0 auto;
233        width: 100%;
234}
235
236TABLE.doubleSelect TD {
237        padding: 0 3px;
238        width: 50%;
239}
240
241TABLE.doubleSelect SELECT.categoryList {
242        width: 100%; max-width: 100%; overflow-x: auto;
243}
244
245.statBar {
246        height: 10px;
247        background-color: #ff7700;
248        border: 1px solid #666;
249}
250
251.over{
252position: relative;
253z-index: 0;
254}
255
256.over:hover{
257background-color: transparent;
258z-index: 50;
259}
260
261.over SPAN{ /*CSS for enlarged image*/
262position: absolute;
263background-color: #222;
264padding: 5px;
265left: -1000px;
266border: 1px solid #ff3363;
267visibility: hidden;
268color: black;
269text-decoration: none;
270}
271
272.over SPAN IMG{ /*CSS for enlarged image*/
273border-width: 0;
274padding: 2px;
275}
276
277.over:hover SPAN{ /*CSS for enlarged image on hover*/
278visibility: visible;
279top: 0;
280left: 60px; /*position where enlarged image should offset horizontally */
281}
282
283BODY {
284        font-size: 0.8em;
285        font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
286        text-align: center; /* be nice to IE5 */
287        min-width: 60em;  /* ~ 3* #menubar width */
288}
289
290H1 {
291color:#eee;
292letter-spacing:1px;
293text-align: left;
294font-size: 150%;
295font-weight: normal;
296font-style:italic;
297padding: 2px 0 0 10px;
298margin: 0;
299float:left;
300}
301
302#pwgHead {
303        color: #aaa;
304  background-color: #464646;
305        height: 36px;
306}
307
308#pwgHead A {color:#ccc;}
309#pwgHead A:hover {color:#fff}
310
311#headActions {float:right; height:36px; line-height:36px; margin-right:10px;}
312
313A {
314        text-decoration: none;
315}
316A:hover {
317        text-decoration: underline;
318}
319IMG {
320        border: none;
321}
322
323/** General defaults **/
324INPUT, SELECT {
325        margin: 0;
326        font-size: 1em; /* <= some browsers don't set it correctly */
327}
328UL, DL, OL { text-align: left;}
329TABLE { /* horizontaly centered */
330        margin-left: auto;
331        margin-right: auto;
332}
333/* for debugging purpose */
334PRE { text-align:left; }
335
336/** forms **/
337
338FORM { padding: 0em; }
339
340FORM P {
341        text-align: center;
342        margin:1em;
343}
344
345form p.field {
346  text-align: left;
347}
348
349form p.formButtons {text-align:left;}
350
351FORM FIELDSET P {
352        margin-top: 1em;
353        margin-bottom: 0;
354        text-align:left;
355}
356
357.small {
358        font-size: 80%;
359}
360
361TEXTAREA.description {
362        height: 6em;
363        width: 40em;
364        overflow: auto;
365}
366
367SELECT.categoryList {
368        height: 20em;
369        width: auto;
370}
371
372DIV.comment BLOCKQUOTE {
373        padding: 0.5em;
374        overflow: auto; /* no solution for IE6 */
375        min-height: 2.75em;     /* fix a Gecko bug whith scrollbar and 1 line only */
376}
377
378
379/**
380 * Filter forms are displayed label by label with the input (or select...)
381 * below the label. Use an UL to make a group (radiobox for instance).
382 * Use a SPAN to group objects in line
383 */
384FIELDSET {
385        padding: 1em;
386        margin: 1em;
387}
388
389FORM.filter FIELDSET UL {
390        margin: 0;
391}
392FORM.filter FIELDSET UL,
393FORM.filter FIELDSET LABEL {
394        display: block;
395        float: left;
396        margin-right: 1em;
397        padding: 0;
398}
399
400FORM.filter FIELDSET LI {
401        list-style: none;
402        margin-bottom: 0.5em;
403}
404
405FORM.filter FIELDSET LI LABEL {
406        display: inline;
407        float: none;
408}
409
410FORM.filter FIELDSET UL.tagSelection LABEL {
411        display: inline;
412        float: none;
413        margin-right:0.5em;/*reduce from above*/
414}
415
416/* cannot use FIELDSET>LABEL because of IE<=6 */
417FORM.filter FIELDSET LABEL INPUT,
418FORM.filter FIELDSET LABEL SELECT,
419FORM.filter FIELDSET LABEL SPAN,
420FORM.filter FIELDSET LABEL TEXTAREA {
421        display: block;
422        margin: 0.5em 0;
423}
424FORM.filter FIELDSET * LABEL INPUT,
425FORM.filter FIELDSET * LABEL SELECT,
426FORM.filter FIELDSET * LABEL TEXTAREA,
427FORM.filter FIELDSET LABEL SPAN INPUT,
428FORM.filter FIELDSET LABEL SPAN SELECT,
429FORM.filter FIELDSET LABEL SPAN TEXTAREA {
430        display: inline;
431        vertical-align: top;
432        margin: 0 0.5em 0 0;
433}
434
435/* following declaration is important to avoid strange FF behaviour */
436FORM.filter FIELDSET LABEL SPAN SELECT {
437        margin: 0;
438}
439
440FORM.filter FIELDSET P
441{
442        clear: left;
443        display: block;
444}
445
446/*FORM.filter INPUT[type="submit"] {
447        margin-top: 1.8em;
448}*/
449
450FORM.properties UL, FORM#update UL {
451        list-style-type: none;
452        margin: 0;
453        padding: 0;
454}
455
456FORM.properties LI, FORM#update UL {
457        margin-bottom: 0.5em;
458        padding: 0;
459        line-height: 1.8em;
460        clear: left;
461}
462
463FORM.properties SPAN.property {
464        font-weight: bold;
465        float: left;
466        width: 50%;
467        text-align: right;
468        margin: 0;
469        padding: 0 0.5em 0 0;
470}
471
472#configContent fieldset {
473  border:none;
474  padding-left:20px;
475}
476#configContent fieldset:not(.no-border) {
477  border-top:1px solid #bbb;
478}
479#configContent legend {
480  padding-left:0;
481  margin-left:-20px;
482}
483#configContent label:not(.no-bold) {
484  font-weight: bold;
485}
486
487#notifyAdmin label {
488   white-space:nowrap;
489}
490
491#theHeader H1 {
492        margin-bottom: 0.5em;
493}
494
495/* button tools */
496UL.actions {
497        text-indent: 0;
498        list-style: none;
499}
500UL.actions LI {
501        display: inline;
502}
503
504UL.tagSelection {
505        width: 99%;
506        margin: 1em 0 1em 0;
507        padding: 0;
508}
509
510UL.tagSelection LI {
511        display:inline-block;
512        width:150px!important;
513        overflow:hidden;
514        white-space: nowrap;
515}
516
517/* jQuery tooltips */
518.ui-tooltip {
519        padding: 8px;
520        position: absolute;
521        z-index: 9999;
522        max-width: 300px;
523        -webkit-box-shadow: 0 0 5px #aaa;
524        box-shadow: 0 0 5px #aaa;
525}
526
527.cluetip-outer {
528        position: relative;
529        border: 1px solid #111111;
530        color: #dddddd;
531        background-color: #222222;
532        text-align: left;
533}
534.cluetip-title {
535        margin: 0 0 5px;
536        padding: 8px;
537        color: #666666;
538        background-color: #d3d3d3;
539        font-size: 1.1em;
540        font-weight: bold;
541}
542.cluetip-inner {
543        padding: 10px;
544}
545
546/* jQuery datepicker */
547img.ui-datepicker-trigger {
548  cursor : pointer;
549  vertical-align: middle;
550  margin:-3px 5px 2px 5px;
551}
552
553/* Add photos, direct mode */
554#uploadBoxes P {
555  margin:0;
556  margin-bottom:2px;
557  padding:0;
558}
559
560#batchLink {
561  text-align:center;
562}
563
564.category_selection {
565  min-height:65px;
566  margin-top:5px;
567}
568
569.category_selection TABLE {
570  margin:0;
571}
572
573#photosAddContent {
574  text-align:left;
575}
576
577#photosAddContent P {
578  margin:0;
579}
580
581#photosAddContent TH {
582  text-align:right;
583  padding-right: 5px;
584}
585
586#uploadFormSettings input[type="text"] {
587  text-align:right;
588}
589
590#uploadFormSettings TH {
591  width:50%;
592}
593
594html, body {height:100%; margin:0; padding:0;}
595#the_page {min-height:100%; position:absolute; width:100%; padding:0;margin:0;}
596
597#pwgMain {
598  padding: 10px 5px 60px;
599}
600
601#footer {
602  position:absolute;
603  bottom:0;
604  width:100%;
605        height: 34px;
606        line-height: 34px;
607        background-repeat: no-repeat;
608        background-position: 7px 2px;
609        background-color:#464646;
610  color:#aaa;
611}
612
613#footer A {color:#ccc;}
614#footer A:hover {color:#fff}
615
616#adminHome {
617  text-align:center;
618  margin-bottom:15px;
619  line-height:30px;
620  width:200px;
621  margin-left:5px;
622  -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px;
623}
624
625#adminHome A {display:block; font-size:1.1em; font-weight:bold;}
626#adminHome A {text-decoration:none;}
627
628#piwigoInfos {float:left; margin-left:140px;}
629#pageInfos {float:right; margin-right:10px;}
630
631/* TipTip CSS - Version 1.2 */
632
633#tiptip_holder {
634        display: none;
635        position: absolute;
636        top: 0;
637        left: 0;
638        z-index: 99999;
639}
640
641#tiptip_holder.tip_top {
642        padding-bottom: 5px;
643}
644
645#tiptip_holder.tip_bottom {
646        padding-top: 5px;
647}
648
649#tiptip_holder.tip_right {
650        padding-left: 5px;
651}
652
653#tiptip_holder.tip_left {
654        padding-right: 5px;
655}
656
657#tiptip_content {
658        font-size: 11px;
659        color: #fff;
660        text-shadow: 0 0 2px #000;
661        padding: 4px 8px;
662        border: 1px solid rgba(255,255,255,0.25);
663        background-color: rgb(25,25,25);
664        background-color: rgba(25,25,25,0.92);
665        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
666        border-radius: 3px;
667        -webkit-border-radius: 3px;
668        -moz-border-radius: 3px;
669        box-shadow: 0 0 3px #555;
670        -webkit-box-shadow: 0 0 3px #555;
671        -moz-box-shadow: 0 0 3px #555;
672}
673
674#tiptip_arrow, #tiptip_arrow_inner {
675        position: absolute;
676        border-color: transparent;
677        border-style: solid;
678        border-width: 6px;
679        height: 0;
680        width: 0;
681}
682
683#tiptip_holder.tip_top #tiptip_arrow {
684        border-top-color: #fff;
685        border-top-color: rgba(255,255,255,0.35);
686}
687
688#tiptip_holder.tip_bottom #tiptip_arrow {
689        border-bottom-color: #fff;
690        border-bottom-color: rgba(255,255,255,0.35);
691}
692
693#tiptip_holder.tip_right #tiptip_arrow {
694        border-right-color: #fff;
695        border-right-color: rgba(255,255,255,0.35);
696}
697
698#tiptip_holder.tip_left #tiptip_arrow {
699        border-left-color: #fff;
700        border-left-color: rgba(255,255,255,0.35);
701}
702
703#tiptip_holder.tip_top #tiptip_arrow_inner {
704        margin-top: -7px;
705        margin-left: -6px;
706        border-top-color: rgb(25,25,25);
707        border-top-color: rgba(25,25,25,0.92);
708}
709
710#tiptip_holder.tip_bottom #tiptip_arrow_inner {
711        margin-top: -5px;
712        margin-left: -6px;
713        border-bottom-color: rgb(25,25,25);
714        border-bottom-color: rgba(25,25,25,0.92);
715}
716
717#tiptip_holder.tip_right #tiptip_arrow_inner {
718        margin-top: -6px;
719        margin-left: -5px;
720        border-right-color: rgb(25,25,25);
721        border-right-color: rgba(25,25,25,0.92);
722}
723
724#tiptip_holder.tip_left #tiptip_arrow_inner {
725        margin-top: -6px;
726        margin-left: -7px;
727        border-left-color: rgb(25,25,25);
728        border-left-color: rgba(25,25,25,0.92);
729}
730
731/* Webkit Hacks  */
732@media screen and (-webkit-min-device-pixel-ratio:0) {
733        #tiptip_content {
734                padding: 4px 8px 5px 8px;
735                background-color: rgba(45,45,45,0.88);
736        }
737        #tiptip_holder.tip_bottom #tiptip_arrow_inner {
738                border-bottom-color: rgba(45,45,45,0.88);
739        }
740        #tiptip_holder.tip_top #tiptip_arrow_inner {
741                border-top-color: rgba(20,20,20,0.92);
742        }
743}
744
745/* Set the width of the menubar for the galery */
746#menubar {
747  width: 18em;
748  margin: 10px 0 50px 5px;
749  display: inline;
750  float: left;
751  left: 0;
752}
753
754#menubar dt [class^=icon-] {
755  font-size:120%;
756}
757
758#menubar dd [class^="icon-"]:before {
759    margin-right: 0.5em;
760}
761
762.content {
763  padding:0 5px 0 0;
764  margin: 0 5px 0 227px;
765  z-index:99;
766}
767
768#thePopuphelpPage {
769  min-width: 0; /*reset default min width because no scrollbar here*/
770}
771
772#thePopuphelpPage #pwgHead {display:none}
773#thePopuphelpPage #footer  {display:none}
774
775.themeBox {display:inline-table; text-align:center; height:192px; background-color:#eee; margin:5px; border-radius:5px; overflow:hidden; }
776
777.themeBox IMG {border:1px solid white; margin:0 15px;}
778.themeName {font-size:1em; margin:5px 0; position:relative; }
779.themeActions {display: table-row; font-size:12px; height: 43px; }
780.themeActions DIV {display: table-cell; vertical-align: middle; line-height:18px; }
781.themeActions A {}
782
783#themesContent .themeBox IMG {width:150px; height:120px;}
784#themesContent H3 {font-size:16px; text-align:left; border-bottom:1px solid #444; letter-spacing:1px; margin:5px;}
785.themeBoxes {min-height:0;text-align:left;}
786
787h2 { letter-spacing:1px; font-weight:bold;}
788h2:lang(en) { text-transform:capitalize; }
789
790#pluginsMenuSeparator {width:80%; margin:5px auto;}
791
792#helpContent P {text-align:left; margin-left:10px;}
793#helpContent LI, #ftpPage LI {margin-top:10px;}
794#helpContent P.nextStepLink {text-align:center; font-weight:bold; margin-bottom:20px;}
795
796#availablePlugins FIELDSET  {border:none;}
797
798/**
799 * Informations box in administration
800 */
801.infos, .errors, .warnings {
802  text-align: left;
803  margin: 5px;
804  padding: 10px 50px 10px 10px;
805  font-weight:bold;
806  background-repeat: no-repeat;
807  background-position: 5px 5px;
808  padding:5px 70px 0pt 53px;
809  min-height: 54px;
810}
811
812.infos {
813  color: #0a0;
814  background-color:#c2f5c2;
815  background-image: url(icon/infos.png);
816}
817
818.errors {
819  color: #f22;
820  background-color: #ffd5dc;
821  background-image: url(icon/errors.png);
822}
823
824.warnings {
825  color: #ee8800;
826  background-color:#ffdd99;
827  background-image: url(icon/warnings.png);
828}
829
830.infos li, .errors li, .warnings li { list-style-type:square; }
831.infos .submit {margin-left:30px;}
832
833.checkActions {text-align:left;padding:0;margin:0;}
834
835.pluginBoxes {
836  text-align:left;
837  position:relative;
838}
839
840.pluginBox {
841  margin-bottom:10px;
842  border-width:1px;
843  border-style:solid;
844  border-radius:5px;
845  -moz-border-radius:5px;
846 }
847.pluginBox table {width:99%;}
848.pluginBox td {text-align:left;}
849.pluginBox td.pluginDesc img {vertical-align:middle;}
850.pluginBoxNameCell {width:180px; vertical-align:top;}
851.pluginBoxes .inactive, .pluginBoxes .uninstalled {opacity:0.8;filter:alpha(opacity=80);}
852
853.pluginMiniBox {
854  display:inline-table;
855  text-align:center;
856  width:250px;
857  height:40px;
858  margin:5px;
859  border-width:1px;
860  border-style:solid;
861  border-radius:5px;
862  -moz-border-radius:5px;
863  overflow:hidden;
864 }
865.pluginMiniBoxNameCell {font-size:1.05em; margin:5px 0;position:relative;}
866.pluginActions {display: table-row; font-size:0.95em; color:#777;}
867.pluginActions DIV {display: table-cell; vertical-align: middle; line-height:18px; }
868.pluginMiniBox .showInfo, .themeBox .showInfo { display:block;position:absolute;top:0;right:5px;width:15px; }
869
870.warning:before {content:url(icon/warning.png);vertical-align:top;}
871.deactivate_all {text-align:right;font-size:0.95em;}
872.showDetails {text-align:right; margin-bottom:-15px; margin-top:-10px; padding-right:1em;}
873
874.languageBoxes {min-height:0;text-align:left;}
875.languageBox {display:inline-table; text-align:center; width:200px; height:40px; margin:5px; -moz-border-radius:5px;border-radius:5px; overflow:hidden; }
876.languageName {font-size:1.1em; margin:5px 0;}
877.languageActions {display: table-row; font-size:12px; }
878.languageActions DIV {display: table-cell; vertical-align: middle; line-height:18px; }
879
880#ui-datepicker-div {-moz-border-radius:5px; border-radius:5px;}
881#ui-datepicker-div .ui-icon-circle-triangle-w, #ui-datepicker-div .ui-icon-circle-triangle-e {color:transparent;}
882#ui-datepicker-div A.ui-datepicker-prev, #ui-datepicker-div A.ui-datepicker-next {background-color:transparent;}
883#ui-datepicker-div A.ui-datepicker-prev:hover, #ui-datepicker-div A.ui-datepicker-next:hover {-moz-border-radius:5px;}
884
885.HelpActions {
886  float:right;
887  margin:0;
888  padding:0;
889  padding-top:2px;
890  padding-left:3px;
891}
892
893.HelpActions a { border:0; margin:0; }
894.HelpActions li {list-style-image:none; list-style-position:outside; list-style-type:none; text-align:center; text-indent:0pt; }
895
896legend {text-align:left;}
897
898/* local-layout */
899/* You can modify this file */
900
901/* default-colors */
902/* So that non-links are slightly greyed out */
903.content .navigationBar {
904        color: #999;
905}
906
907/* Tables & forms */
908
909SELECT, TEXTAREA {
910  color:#999;
911  background-color: #666;
912}
913
914INPUT:focus, SELECT:focus, TEXTAREA:focus {
915  background-color: #444;       /* whitesmoke */
916}
917
918/* some theme set a border on INPUT  which is not pretty for radio/checkbox */
919INPUT[type="radio"], INPUT[type="checkbox"] {
920  border: none; /* <= Opera needs this */
921}
922
923
924/**
925 * Header message like upgrade
926 */
927.header_msgs {
928  text-align:center;
929  font-weight: bold;
930  color:#333;
931  background-color: transparent;
932  margin: 1px;
933  padding: 1px;
934}
935
936/**
937 * Header notes box in public/administration
938 */
939.header_notes {
940  border: 1px solid #666;
941  background: transparent url(icon/note.png) no-repeat right top;
942  font-weight: bold;
943  margin: 14px 24px 14px 14px;
944  padding: 5px 0 0 0;
945  top: 90px;
946  position: absolute;
947  text-align: right;
948}
949
950LEGEND {
951  font-weight: bold;
952  letter-spacing: 1px;
953  padding: 0 10px;
954}
955
956/* Batch Manager, global mode */
957#batchManagerGlobal #action p {text-align:left;}
958#batchManagerGlobal .bulkAction {text-align:left;margin:15px 0;padding:0;}
959#batchManagerGlobal #action_del_tags ul.tagSelection {margin:0 !important; width:620px;}
960#batchManagerGlobal #checkActions {text-align:left; margin:0 0 20px 0;}
961#batchManagerGlobal ul.thumbnails div.actions {display:none;position:absolute;top:0;right:5px;color:#fff}
962#batchManagerGlobal ul.thumbnails div.actions a {color:#fff;}
963#batchManagerGlobal ul.thumbnails span.wrap1:hover div.actions {display:block;}
964#batchManagerGlobal #selectedMessage {padding:5px; border-radius:5px;}
965#batchManagerGlobal #applyOnDetails {font-style:italic;}
966#batchManagerGlobal .actionButtons {text-align:left;}
967#batchManagerGlobal #filterList {padding-left:5px;}
968#batchManagerGlobal #filterList li {margin-bottom:5px; list-style-type:none;}
969#batchManagerGlobal a.removeFilter {background: url(icon/remove_filter.png) no-repeat top left;width:7px;height:7px;display:inline-block;}
970#batchManagerGlobal a.removeFilter:hover {background: url(icon/remove_filter_hover.png);}
971#batchManagerGlobal .removeFilter span {display:none}
972#batchManagerGlobal #applyFilterBlock {margin-top:20px;}
973#batchManagerGlobal .useFilterCheckbox {display:none;}
974
975#batchManagerGlobal blockquote {margin:5px 0 20px 15px;}
976#batchManagerGlobal .ui-slider-horizontal {width:650px;margin:5px 0 10px 0;}
977
978#batchManagerGlobal #duplicates_options label {margin-left:10px;}
979
980#order_filters a.addFilter {font-weight:normal;margin-left:20px;}
981#order_filters a.removeFilter {font-weight:normal;}
982#order_filters span.property span.filter:first-child a.removeFilter {display:none;} /* can't delete the first field */
983#order_filters span.filter {display:block;margin-left:20px;}
984#order_filters .transparent {opacity:0.5;filter:alpha(opacity=50);}
985#order_filters .order_by_is_custom {display:block;font-weight:normal;font-style:italic;margin-left:20px;}
986
987/* Upload Form */
988.plupload_header {display:none;}
989#uploadForm .plupload_container {padding:0}
990#uploadForm .plupload_scroll .plupload_filelist {height:250px;}
991#uploadForm li.plupload_droptext {line-height:230px;font-size:2em;}
992
993#uploadBoxes .file {margin-bottom:5px;text-align:left;}
994#uploadBoxes {margin-top:20px;}
995#addUploadBox {margin-bottom:2em;}
996
997p.uploadInfo {text-align:left;font-size:90%;color:#999;}
998p#uploadWarningsSummary {text-align:left;margin-bottom:1em;font-size:90%;color:#999;}
999p#uploadWarningsSummary .showInfo {margin-left:3px;}
1000p#uploadWarnings {display:none;text-align:left;margin-bottom:1em;font-size:90%;color:#999;}
1001p#uploadModeInfos {text-align:left;margin-top:1em;font-size:90%;color:#999;}
1002
1003#photosAddContent p.showFieldset {text-align:left;margin: 1em;}
1004
1005#uploadForm .plupload_buttons, #uploadForm .plupload_progress { display:none !important; }
1006#uploadForm #startUpload { margin:5px 0 15px 15px; padding:5px 10px; font-size:1.1em; }
1007#uploadForm #startUpload:before { margin-right:0.5em; }
1008#uploadForm #addFiles { margin-right:10px; float:left; }
1009#uploadForm #uploadingActions { margin:10px 10px 10px 15px; }
1010#uploadForm .big-progressbar { vertical-align:middle; display:inline-block; margin-left:10px; }
1011
1012.big-progressbar {
1013  width:100%;
1014  max-width:600px;
1015  background:#fff;
1016  padding:0;
1017  border-radius:5px;
1018  position:relative;
1019  height:18px;
1020}
1021
1022@keyframes animatedBackground {
1023        from { background-position: 0 0; }
1024        to { background-position: 33px 0; }
1025}
1026
1027@-webkit-keyframes animatedBackground {
1028        from { background-position: 0 0; }
1029        to { background-position: 33px 0; }
1030}
1031
1032.big-progressbar .progressbar {
1033  height:18px;
1034  min-width:5px;
1035  background:#444;
1036  border-radius:5px 0 0 5px;
1037  background-size:33px 25px;
1038  animation: animatedBackground 1s linear infinite;
1039  -webkit-animation: animatedBackground 1s linear infinite;
1040}
1041
1042
1043/* Tag Manager */
1044.warningDeletion {display:none;font-style:italic;}
1045
1046#debug { margin-left: 227px; font-size:12px; }
1047
1048/* Album Properties */
1049#albumThumbnail {
1050  width:1%;
1051  padding-right:10px;
1052  text-align:center;
1053}
1054
1055#albumThumbnail img {
1056  border:2px solid #ddd;
1057}
1058
1059#albumLinks {
1060  vertical-align:top;
1061  border-left:2px solid #ddd;
1062  padding-left:10px;
1063}
1064
1065#albumLinks ul, .photoLinks ul {
1066  padding-left:0;
1067}
1068
1069#albumLinks li, .photoLinks li {
1070  list-style:none;
1071}
1072
1073.photoLinks {
1074  vertical-align:top;
1075}
1076
1077.photoLinks ul {
1078  margin:0;
1079}
1080
1081/* Album Manager */
1082#addAlbumForm {
1083  text-align:left;
1084  padding:1em;
1085}
1086#addAlbumForm .selectize-dropdown-content {
1087  max-height:170px;
1088}
1089#addAlbumForm input[name="category_name"], #formCreateAlbum input[name="virtual_name"] {
1090  width:300px;
1091}
1092
1093/* Pending Comments */
1094#pendingComments {
1095  padding:0 5px 0 10px;
1096}
1097
1098#pendingComments table {
1099  width:100%;
1100}
1101
1102#pendingComments .bottomButtons {
1103  text-align:left;
1104}
1105
1106.commentFilter {text-align:left;margin:5px 1em;}
1107.commentFilter .navigationBar {float:right; margin:0;}
1108
1109FORM#categoryOrdering p.albumTitle {margin:0;}
1110FORM#categoryOrdering p.albumActions, FORM#categoryOrdering span.albumInfos {visibility:hidden; margin:0}
1111FORM#categoryOrdering .categoryLi:hover p.albumActions, FORM#categoryOrdering .categoryLi:hover span.albumInfos {visibility:visible;}
1112
1113.showCreateAlbum {text-align:left; margin:0 1em 1em 1em;line-height:22px;}
1114#autoOrder p, #createAlbum p {text-align:left; margin:0 0 1em 0;}
1115#autoOrder p.actionButtons, #createAlbum p.actionButtons {margin-bottom:0;}
1116
1117#ftpPage p {text-align:left;margin:1em;}
1118#ftpPage fieldset p {margin:0;}
1119
1120/* watermark configuration screen */
1121#watermarkPositionBox {
1122  border:2px solid #ccc;
1123  width:500px;
1124  padding:5px;
1125  background-color:#e5e5e5;
1126}
1127
1128#watermarkPositionBox label {
1129  font-weight:normal;
1130  display:block;
1131  color:#444;
1132}
1133
1134#watermarkPositionBox label.middle {
1135  margin:50px;
1136  text-align:center;
1137}
1138
1139#watermarkPositionBox label.right {
1140  float:right;
1141}
1142
1143#positionCustomDetails {
1144  margin-left:20px;
1145  display:none;
1146}
1147
1148#positionCustomDetails label {
1149  font-weight:normal;
1150}
1151
1152input[type="text"].dError {border-color:#ff7070; background-color:#FFe5e5;}
1153.dErrorDesc {background-color:red; color:white; padding:0 5px;border-radius:10px; font-weight:bold;cursor:help;}
1154
1155#wImg {max-height:100px;border:2px solid #ccc;margin-top:5px;}
1156#addWatermark {display:none;}
1157
1158.adminMenubarCounter {
1159  background-color:#666;
1160  color:white;
1161  padding:1px 5px;
1162  border-radius:10px;
1163  -moz-border-radius:10px;
1164  -webkit-border-radius:10px;
1165  margin-left:5px;
1166}
1167
1168.groups {
1169  text-align:center;
1170}
1171.groups li {
1172  vertical-align: middle;
1173  position: relative;
1174  display: inline-block;
1175  text-align: left;
1176  height: 300px;
1177  width: 250px;
1178  margin: 5px;
1179  border-radius: 5px;
1180}
1181.groups p {
1182  text-align:left;
1183}
1184.groups label>p {
1185  margin: 0;
1186  border-radius: 5px 5px 0 0;
1187  padding: 2px;
1188  text-align: center;
1189}
1190
1191.groups input {
1192  float: right;
1193}
1194p.list_user {
1195  text-align: left;
1196  max-height: 200px;
1197  overflow: auto; 
1198}
1199a.group_perm {
1200  position: absolute;
1201  bottom: 5px;
1202  right: 5px;
1203}
1204
1205#userList .openUserDetails {visibility:hidden;}
1206#userList tr:hover .openUserDetails {visibility:visible;}
1207#userList .icon-cancel-circled {visibility:visible;}
1208
1209.userProperties {max-width:730px;}
1210.userPropertiesContainer {border-top:1px solid #ddd;margin-top:1em;}
1211.userPropertiesSet {width:350px;float:left;padding-top:5px}
1212.userPropertiesSetTitle {font-weight:bold;margin-bottom:1em;}
1213.userPrefs {border-left:1px solid #ddd;padding-left:10px;}
1214.userProperty {width:340px;float:left;margin-bottom:15px;}
1215.userActions {float:right;text-align:right;}
1216
1217.preview-box.icon-search {
1218  display:block;
1219  position:relative;
1220}
1221.preview-box.icon-search:before {
1222  opacity:0;
1223  position:absolute;
1224  margin:-22px 0 0 -22px;
1225  top:50%;
1226  left:50%;
1227  font-size:50px;
1228  line-height:50px;
1229  color:white;
1230  z-index:100;
1231  text-shadow:0 0 20px rgba(0,0,0,0.4);
1232  -webkit-transition:opacity 200ms ease;
1233  transition:opacity 200ms ease;
1234}
1235.preview-box.icon-search:hover:before {
1236  opacity:0.9;
1237}
1238.preview-box.icon-search img {
1239  opacity:1;
1240  -webkit-transition:opacity 200ms ease;
1241  transition:opacity 200ms ease;
1242}
1243.preview-box.icon-search:hover img {
1244  opacity:0.5;
1245}
1246
1247/* table in help/quick_search.html */
1248table.qsearch_help_table {
1249  border-collapse:collapse;
1250  text-align:left;
1251  margin:1em;
1252}
1253table.qsearch_help_table q {
1254        font-family: Courier, Fixed;
1255        font-weight: bold;
1256}
1257table.qsearch_help_table q:before {
1258        content: '\'';
1259        color: green;
1260}
1261table.qsearch_help_table q:after {
1262        content: '\'';
1263        color: green;
1264}
1265table.qsearch_help_table td {
1266        border: 1px solid #ccc;
1267  padding:5px;
1268  vertical-align:top;
1269}
1270
1271.font-checkbox [class*=icon-check]:before {
1272  font-size:16px;
1273  line-height:16px;
1274  margin-right:0;
1275}
1276.font-checkbox .icon-check-empty {
1277  position:relative;
1278  left:-1px;
1279}
1280.font-checkbox input[type=checkbox], .font-checkbox input[type=radio] {
1281  display:none;
1282}
Note: See TracBrowser for help on using the repository browser.