update both themes for toolkit winstripe changes up to 2011-01-09
[themes.git] / EarlyBlue / mozapps / extensions / extensions.css
1 /* ***** BEGIN LICENSE BLOCK *****
2  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3  *
4  * The contents of this file are subject to the Mozilla Public License Version
5  * 1.1 (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  * http://www.mozilla.org/MPL/
8  *
9  * Software distributed under the License is distributed on an "AS IS" basis,
10  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11  * for the specific language governing rights and limitations under the
12  * License.
13  *
14  * The Original Code is the Extension Manager UI.
15  *
16  * The Initial Developer of the Original Code is
17  * the Mozilla Foundation.
18  * Portions created by the Initial Developer are Copyright (C) 2010
19  * the Initial Developer. All Rights Reserved.
20  *
21  * Contributor(s):
22  *   Blair McBride <bmcbride@mozilla.com>
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38 #addons-page {
39   background-color: #CCD0DD;
40   color: #000000;
41   margin: 20px;
42 }
43
44 #view-port-container {
45   /* Needed to allow the radius to clip the inner content, see bug 595656 */
46   overflow: hidden;
47   background-color: #FFFFFF;
48   border: 1px solid #666699;
49 }
50
51 .nav-button {
52   list-style-image: url("chrome://communicator/skin/icons/communicatoricons.png");
53   min-width: 0;
54 }
55
56 #forward-btn {
57   -moz-border-start: none;
58 }
59
60 #back-btn:-moz-locale-dir(ltr),
61 #forward-btn:-moz-locale-dir(rtl) {
62   -moz-image-region: rect(42px 25px 63px 0px);
63 }
64
65 #back-btn[disabled="true"]:-moz-locale-dir(ltr),
66 #forward-btn[disabled="true"]:-moz-locale-dir(rtl) {
67   -moz-image-region: rect(42px 50px 63px 25px);
68 }
69
70 #back-btn:-moz-locale-dir(rtl),
71 #forward-btn:-moz-locale-dir(ltr) {
72   -moz-image-region: rect(63px 25px 84px 0px);
73 }
74
75 #back-btn[disabled="true"]:-moz-locale-dir(rtl),
76 #forward-btn[disabled="true"]:-moz-locale-dir(ltr) {
77   -moz-image-region: rect(63px 50px 84px 25px);
78 }
79
80 /*** global warnings ***/
81  
82 .global-warning-container {
83   overflow-x: hidden;
84 }
85
86 .global-warning {
87   -moz-box-align: center;
88   padding: 0 8px;
89   color: #000000;
90   font-weight: bold;
91 }
92
93 #addons-page[warning] .global-warning-container {
94   background-color: #FFFFCC;
95 }
96
97 #detail-view .global-warning {
98   padding: 4px 12px;
99   border-bottom: 1px solid #9999CC;  
100 }
101
102 @media all and (max-width: 600px) {
103   .global-warning-text {
104     display: none;
105   }
106
107   .global-warning .warning-icon {
108     /* background-color: #FFF;
109     box-shadow: 0px 0px 2px 5px #FFF;
110     border-radius: 10px; */
111   }
112 }
113
114 /* Plugins aren't yet disabled by safemode (bug 342333),
115    so don't show that warning when viewing plugins. */
116 #addons-page[warning="safemode"] .view-pane[type="plugin"] .global-warning-container,
117 #addons-page[warning="safemode"] #detail-view[loading="true"] .global-warning-container {
118   background-color: inherit;
119   background-image: none;
120 }
121
122
123 /*** notification icons ***/
124
125 .warning-icon {
126   list-style-image: url("chrome://global/skin/icons/warning-16.png");
127   width: 16px;
128   height: 16px;
129   margin: 3px 0;
130 }
131
132 .error-icon {
133   list-style-image: url("chrome://global/skin/icons/error-16.png");
134   width: 16px;
135   height: 16px;
136   margin: 3px 0;
137 }
138
139 .pending-icon,
140 .info-icon {
141   list-style-image: url("chrome://global/skin/icons/information-16.png");
142   width: 16px;
143   height: 16px;
144   margin: 3px 0;
145 }
146
147 .addon-view[pending="disable"] .pending-icon,
148 .addon-view[pending="uninstall"] .pending-icon {
149   list-style-image: url("chrome://global/skin/icons/warning-16.png");
150   width: 16px;
151   height: 15px;
152   margin: 3px 0;
153 }
154
155
156 /*** view alert boxes ***/
157
158 .alert-container {
159   -moz-box-align: center;
160 }
161
162 .alert-spacer-before {
163   -moz-box-flex: 1;
164 }
165
166 .alert-spacer-after {
167   -moz-box-flex: 3;
168 }
169
170 .alert {
171   -moz-box-align: center;
172   padding: 10px;
173   color: #FF9F00;
174   border: 1px solid #9C9CFF;
175   border-radius: 8px;
176   background-color: #000000;
177 }
178
179 .alert .alert-title {
180   font-weight: bold;
181   font-size: 200%;
182   margin-bottom: 15px;
183 }
184
185 .alert .addon-control {
186   margin: 1em 2em;
187 }
188
189 .loading {
190   list-style-image: url("chrome://global/skin/icons/loading.gif");
191   padding-left: 20px;
192   padding-right: 20px;
193 }
194
195
196 /*** category selector ***/
197
198 #categories {
199   -moz-appearance: none;
200   border: none;
201   -moz-margin-end: -1px;
202   background-color: transparent;
203   position: relative;
204   margin-top: 31px;
205 }
206
207 .category {
208   background-color: transparent;
209   color: #FF9F00;
210   min-height: 0;
211   padding: 10px 4px;
212   border-width: 1px;
213   border-style: solid;
214   border-color: transparent;
215   -moz-box-align: center;
216   overflow: hidden;
217 }
218
219 .category[disabled] {
220   height: 0;
221   opacity: 0;
222   -moz-transition-property: height, opacity;
223   -moz-transition-duration: 1s, 0.8s;
224 }
225
226 .category:not([disabled]) {
227   height: 52px;
228   -moz-transition-property: height, opacity;
229   -moz-transition-duration: 1s, 0.8s;
230 }
231
232 .category[selected] {
233   background-color: #FFFFFF;
234   color: #000000;
235   font-weight: bold;
236   border-color: #666699;
237 }
238
239 .category-name {
240   font-size: 150%;
241 }
242
243 /* Maximize the size of the viewport when the window is small */
244 @media all and (max-width: 800px) {
245   .category-name {
246     display: none;
247   }
248 }
249
250 .category-badge {
251   background-color: #666699;
252   padding: 2px 8px;
253   margin: 6px 0;
254   border: 1px outset #666699;
255   color: #FFFFFF;
256   font-weight: bold;
257   text-align: center;
258 }
259
260 .category-badge[value="0"] {
261   visibility: hidden;
262 }
263
264 .category-icon {
265   width: 32px;
266   height: 32px;
267   -moz-margin-start: 6px;
268 }
269
270 #category-search > .category-icon {
271   list-style-image: url("chrome://mozapps/skin/extensions/category-search.png");
272 }
273 #category-discover > .category-icon {
274   list-style-image: url("chrome://mozapps/skin/extensions/category-discover.png");
275 }
276 #category-languages > .category-icon {
277   list-style-image: url("chrome://mozapps/skin/extensions/category-languages.png");
278 }
279 #category-searchengines > .category-icon {
280   list-style-image: url("chrome://mozapps/skin/extensions/category-searchengines.png");
281 }
282 #category-extensions > .category-icon {
283   list-style-image: url("chrome://mozapps/skin/extensions/category-extensions.png");
284 }
285 #category-themes > .category-icon {
286   list-style-image: url("chrome://mozapps/skin/extensions/category-themes.png");
287 }
288 #category-plugins > .category-icon {
289   list-style-image: url("chrome://mozapps/skin/extensions/category-plugins.png");
290 }
291 #category-availableUpdates > .category-icon {
292   list-style-image: url("chrome://mozapps/skin/extensions/category-available.png");
293 }
294 #category-recentUpdates > .category-icon {
295   list-style-image: url("chrome://mozapps/skin/extensions/category-recent.png");
296 }
297
298
299 /*** header ***/
300
301 #header {
302   margin-bottom: 18px;
303   height: 2em;
304 }
305
306 #header-search {
307   color: #000000;
308   border: 1px inset #CCD0DD;
309   padding: 3px;
310   background-color: #CCD0DD;
311   margin: 0;
312 }
313
314 #header-search .textbox-input:-moz-placeholder {
315   color: #808080;
316 }
317
318 #header-search[focused="true"] {
319   background-color: #FFFFFF;
320 }
321
322 #header-utils-btn {
323   min-width: 4.5em;
324   list-style-image: url("chrome://mozapps/skin/extensions/utilities.png");
325   -moz-margin-end: 18px;
326 }
327
328 .view-header {
329   background-color: #9999CC;
330   padding: 4px;
331   margin: 0;
332   min-height: 31px;
333   border-bottom: 1px solid #666699;
334 }
335
336
337 /*** sorters ***/
338
339 .sort-controls {
340   -moz-appearance: none;
341 }
342
343 .sorter {
344   -moz-appearance: none;
345   border: none;
346   background-color: transparent;
347   color: #000000;
348   padding: 0 6px;
349   margin: 0 6px;
350   min-width: 12px !important;
351   -moz-box-direction: reverse;
352 }
353
354 .sorter .button-box {
355   padding-top: 0;
356   padding-bottom: 0;
357 }
358
359 .sorter[checkState="1"],
360 .sorter[checkState="2"] {
361   background-color: #666699;
362 }
363
364 .sorter[checkState="1"] {
365   list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
366 }
367
368 .sorter[checkState="2"] {
369   list-style-image: url("chrome://global/skin/arrow/arrow-up.gif");
370 }
371
372 .sorter .button-icon {
373   -moz-margin-start: 4px;
374 }
375
376
377 /*** list ***/
378
379 .list {
380   margin: 0;
381   border: none;
382   background-color: transparent;
383 }
384
385 .addon {
386   border-bottom: 1px solid #9999CC;
387   padding: 5px;
388   background-origin: border-box;
389 }
390
391 .addon[status="installing"] {
392   -moz-box-align: center;
393 }
394
395 .details {
396   cursor: pointer;
397   margin: 0;
398   -moz-margin-start: 10px;
399 }
400
401 .icon-container {
402   width: 48px;
403   height: 48px;
404   margin: 22px 7px 7px 7px;
405 }
406
407 .addon[active="false"] .icon {
408 /*  filter: url("chrome://mozapps/skin/extensions/extensions.svg#greyscale"); */
409 }
410
411 .icon {
412   list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png");
413   max-width: 48px;
414   max-height: 48px;
415 }
416
417 .addon-view[type="theme"] .icon {
418   list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric.png");
419 }
420
421 .addon-view[type="locale"] .icon {
422   list-style-image: url("chrome://mozapps/skin/extensions/localeGeneric.png");
423 }
424
425 .addon-view[type="plugin"] .icon {
426   list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric.png");
427 }
428
429 .name-container,
430 .addon[status="installing"] .name {
431   font-size: 150%;
432   font-weight: bold;
433   color: #404040;
434   margin-bottom: 0;
435 }
436
437 .creator {
438   font-weight: bold;
439 }
440
441 .creator .text-link {
442   /* color: #0066CC; */
443 }
444
445 .description-container {
446   margin-top: 8px;
447   -moz-margin-start: 6px;
448 }
449
450 .description {
451   margin: 0;
452 }
453
454 .warning,
455 .pending,
456 .error,
457 .info {
458   -moz-margin-start: 48px;
459   font-weight: bold;
460 }
461
462 .addon-view .warning {
463   color: #808000;
464 }
465
466 .addon-view .error {
467   color: #FF0000;
468 }
469
470 .addon-view .pending {
471   color: #33FF33;
472 }
473
474 .addon-view[pending="disable"] .pending,
475 .addon-view[pending="uninstall"] .pending {
476   color: #000000;
477 }
478
479 .addon .relnotes-container {
480   -moz-box-align: start;
481   -moz-margin-start: 6px;
482   height: 0;
483   overflow: hidden;
484   opacity: 0;
485   -moz-transition-property: height, opacity;
486   -moz-transition-duration: 0.5s, 0.5s;
487 }
488
489 .addon[show-relnotes] .relnotes-container {
490   opacity: 1;
491   -moz-transition-property: height, opacity;
492   -moz-transition-duration: 0.5s, 0.5s;
493 }
494
495 .addon .relnotes-header {
496   font-weight: bold;
497   margin: 10px 0;
498 }
499
500 .addon .relnotes-toggle {
501   border: none;
502   background: transparent;
503   font-weight: bold;
504   -moz-box-direction: reverse;
505   cursor: pointer;
506   list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
507 }
508
509 .addon .relnotes-toggle > .button-box > .button-icon {
510   -moz-padding-start: 4px;
511 }
512
513 .addon[show-relnotes] .relnotes-toggle {
514   list-style-image: url("chrome://global/skin/arrow/arrow-up.gif");
515 }
516
517 .addon[active="false"] {
518   /* background-color: rgba(135, 135, 135, 0.1); */
519 }
520
521 .addon-view[active="false"],
522 .addon-view[active="false"] .name-container {
523   color: #666699;
524 }
525
526 .addon-view[notification="warning"] {
527   background-color : #FFFFCC;
528 }
529
530 richlistbox:focus > .addon-view[notification="warning"][selected="true"] {
531   color: #336699;
532 }
533
534 .addon-view[notification="error"] {
535   background-color: #FFD0DD;
536 }
537
538 .addon-view[notification="info"] {
539   background-color: #9999CC;
540 }
541
542 .addon-view[pending="enable"],
543 .addon-view[pending="upgrade"],
544 .addon-view[pending="install"] {
545   background-color: #CCFFDD;
546 }
547
548 .addon-view[pending="enable"] .pending,
549 .addon-view[pending="upgrade"] .pending,
550 .addon-view[pending="install"] .pending {
551   color: #008000;
552 }
553
554 .addon-view[pending="disable"],
555 .addon-view[pending="uninstall"] {
556   background-color: #808080;
557 }
558
559 .addon[selected] {
560   background-color: #336699;
561   color: #000000;
562 }
563
564 .addon[selected] .name-container {
565   /* text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.7);  */
566 }
567
568 .addon[active="false"][selected] .name-container {
569   color: #222233;
570 }
571
572
573 /*** item - uninstalled ***/
574
575 .addon[status="uninstalled"] {
576   border: none;
577 }
578
579 .addon[status="uninstalled"] > .container {
580   -moz-box-align: center;
581   padding: 4px 20px;
582   background-color: #808080;
583   border-radius: 8px;
584   font-size: 120%;
585 }
586
587 .addon[status="uninstalled"][selected] {
588   background-color: transparent;
589 }
590
591
592 /*** search view ***/
593
594 #search-filter {
595   padding: 5px 20px;
596   -moz-box-align: center;
597   background-color: #FFFFFF;
598   font-size: 120%;
599   border-bottom: 1px solid #666699;
600   overflow-x: hidden;
601 }
602
603 #search-filter-label {
604   font-weight: bold;
605   color: #808080;
606 }
607
608 .search-filter-radio {
609   -moz-appearance: none;
610   padding: 0 6px;
611   margin: 0 3px;
612   border-radius: 10000px;
613 }
614
615 .search-filter-radio[selected] {
616   background-color: #3366699;
617   color: #000000;
618 }
619
620 .search-filter-radio .radio-check-box1 {
621   display: none;
622 }
623
624 .search-filter-radio .radio-icon {
625   display: none;
626 }
627
628 #search-allresults-link {
629   margin-top: 1em;
630   margin-bottom: 2em;
631 }
632
633 /*** detail view ***/
634
635 #detail-view .loading {
636   opacity: 0;
637 }
638
639 #detail-view:not([loading]) .alert-container {
640   visibility: collapse;
641 }
642
643 #detail-view[loading-extended] .loading {
644   opacity: 1;
645   -moz-transition-property: opacity;
646   -moz-transition-duration: 1s;
647 }
648
649 .detail-view-container {
650   padding: 0 2em 2em 2em;
651   font-size: 110%;
652 }
653
654 #detail-notifications {
655   margin-top: 1em;
656   margin-bottom: 2em;
657 }
658
659 #detail-notifications .warning,
660 #detail-notifications .pending,
661 #detail-notifications .error {
662   -moz-margin-start: 0;
663 }
664
665 #detail-icon {
666   -moz-margin-end: 10px;
667   margin-top: 6px;
668   max-width: 64px;
669   max-height: 64px;
670 }
671
672 #detail-summary {
673   margin-bottom: 2em;
674 }
675
676 #detail-name-container {
677   font-size: 200%;
678 }
679
680 #detail-screenshot {
681   -moz-margin-end: 2em;
682   max-width: 300px;
683   max-height: 300px;
684 }
685
686 #detail-desc-container {
687   margin-bottom: 2em;
688 }
689
690 #detail-desc {
691   -moz-margin-start: 6px;
692   white-space: pre-wrap;
693   /* This is necessary to fix layout issues with multi-line descriptions, see
694      bug 592712*/
695   outline: solid transparent;
696   min-width: 8em;
697 }
698
699 #detail-contributions {
700   border-radius: 5px;
701   border: 1px solid #666699;
702   margin-bottom: 2em;
703   padding: 1em;
704   background-color: #FFFFCC;
705 }
706
707 #detail-contrib-description {
708   font-style: italic;
709   margin-bottom: 1em;
710   color: #000000;
711 }
712
713 #detail-contrib-suggested {
714   color: #808080;
715   font-weight: bold;
716 }
717
718 #detail-contrib-btn {
719   list-style-image: url("chrome://mozapps/skin/extensions/heart.png");
720 }
721
722 #detail-contrib-btn .button-icon {
723   -moz-margin-end: 3px;
724 }
725
726 #detail-grid {
727   margin-bottom: 2em;
728 }
729
730 .detail-row[first-row="true"],
731 .detail-row-complex[first-row="true"] {
732   border-top: none;
733 }
734
735 .detail-row,
736 .detail-row-complex {
737   border-top: 1px solid #808080;
738   -moz-box-align: center;
739 }
740
741 .detail-row-value {
742   -moz-margin-start: 0;
743 }
744
745 #detail-controls {
746   margin-bottom: 1em;
747 }
748
749 #detail-view[active="false"]:not([pending]):not([notification]) {
750   /* background-color: foo; */
751 }
752
753 /*** creator ***/
754
755 .creator > label {
756   -moz-margin-start: 0;
757   -moz-margin-end: 0;
758 }
759
760 .creator > .text-link {
761   margin-top: 1px;
762   margin-bottom: 1px;
763 }
764
765
766 /*** rating ***/
767
768 .meta-rating {
769   -moz-margin-start: 0;
770   -moz-margin-end: 0;
771   padding-top: 2px;
772 }
773
774 .meta-rating > .star {
775   list-style-image: url("chrome://mozapps/skin/extensions/rating-not-won.png");
776   padding: 0 1px;
777 }
778
779 .meta-rating > .star[on="true"] {
780   list-style-image: url("chrome://mozapps/skin/extensions/rating-won.png");
781 }
782
783
784 /*** download progress ***/
785
786 .download-progress {
787   background-color: #CCD0DD;
788   border: 1px solid #808080;
789   width: 200px;
790   height: 21px;
791   margin: 0 8px;
792 }
793
794 .download-progress[mode="undetermined"] .status-container {
795   padding: 0 2px;
796 }
797
798 .download-progress .start-cap,
799 .download-progress[complete] .end-cap,
800 .download-progress[mode="undetermined"] .end-cap,
801 .download-progress .progress .progress-bar {
802   background-color: #336699;
803 }
804
805 .download-progress .progress .progress-bar  {
806   border-left-width: 0;
807   border-right-width: 0;
808   min-height: 21px;
809 }
810
811 .download-progress .progress {
812   background-color: transparent;
813   padding: 0;
814   margin: 0;
815   border: none;
816 }
817
818 .download-progress .start-cap, .download-progress .end-cap {
819   width: 12px;
820 }
821
822 .download-progress .start-cap:-moz-locale-dir(ltr),
823 .download-progress .end-cap:-moz-locale-dir(rtl) {
824   border-radius: 3px 0 0 3px;
825 }
826
827 .download-progress .end-cap:-moz-locale-dir(ltr),
828 .download-progress .start-cap:-moz-locale-dir(rtl) {
829   border-radius: 0 3px 3px 0;
830 }
831
832 .download-progress .pause,
833 .download-progress .cancel {
834   -moz-appearance: none;
835   background-color: #CCD0DD;
836   border: 1px solid #666699;
837   padding: 3px;
838   min-width: 0;
839   margin: 3px;
840 }
841
842 .download-progress .pause .button-box,
843 .download-progress .cancel .button-box {
844   padding: 0;
845   border: none;
846 }
847
848 .download-progress .pause .button-text,
849 .download-progress .cancel .button-text {
850   display: none;
851 }
852
853 .download-progress .pause .button-icon,
854 .download-progress .cancel .button-icon {
855   -moz-margin-start: 0;
856 }
857
858 .download-progress .pause {
859   list-style-image: url('chrome://mozapps/skin/extensions/pause.png');
860 }
861
862 .download-progress .cancel {
863   list-style-image: url('chrome://mozapps/skin/extensions/cancel.png');
864 }
865
866 .download-progress .status-container {
867   -moz-box-align: center;
868 }
869
870 .download-progress .status {
871 /*  text-shadow: #FFF 0 0 2px; */
872 }
873
874 /*** install status ***/
875
876 .install-status {
877   -moz-box-align: center;
878 }
879
880
881 /*** check for updates ***/
882
883 #updates-container {
884   -moz-box-align: center;
885 }
886
887 #updates-container .button-link {
888   font-weight: bold;
889 }
890
891 #updates-installed,
892 #updates-downloaded {
893   color: #00CC00;
894   font-weight: bold;
895 }
896
897 #update-selected {
898   margin: 12px;
899 }
900
901 /*** buttons ***/
902
903 .addon-control[disabled="true"] {
904   display: none;
905 }
906
907 .button-link {
908   background: transparent;
909   border: none;
910   text-decoration: underline;
911   color: #0000FF;
912   cursor: pointer;
913   min-width: 0;
914   margin: 0 6px;
915 }