e2f13a3a853a21a039a184165ae608e2487578f9
[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 @import url("chrome://global/skin/inContentUI.css");
39
40 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
41
42 .nav-button {
43   list-style-image: url("chrome://communicator/skin/icons/communicatoricons.png");
44 }
45
46 #forward-btn {
47   -moz-border-start: none;
48 }
49
50 #back-btn:-moz-locale-dir(ltr),
51 #forward-btn:-moz-locale-dir(rtl) {
52   -moz-image-region: rect(42px 25px 63px 0px);
53 }
54
55 #back-btn[disabled="true"]:-moz-locale-dir(ltr),
56 #forward-btn[disabled="true"]:-moz-locale-dir(rtl) {
57   -moz-image-region: rect(42px 50px 63px 25px);
58 }
59
60 #back-btn:-moz-locale-dir(rtl),
61 #forward-btn:-moz-locale-dir(ltr) {
62   -moz-image-region: rect(63px 25px 84px 0px);
63 }
64
65 #back-btn[disabled="true"]:-moz-locale-dir(rtl),
66 #forward-btn[disabled="true"]:-moz-locale-dir(ltr) {
67   -moz-image-region: rect(63px 50px 84px 25px);
68 }
69
70
71 /*** global warnings ***/
72
73 .global-warning-container {
74   overflow-x: hidden;
75 }
76
77 .global-warning {
78   -moz-box-align: center;
79   padding: 0 8px;
80   color: #000000;
81   font-weight: bold;
82 }
83
84 #addons-page[warning] .global-warning-container {
85   background-color: #FFFFCC;
86 }
87
88 #detail-view .global-warning {
89   padding: 4px 12px;
90   border-bottom: 1px solid #9999CC;
91 }
92
93 @media all and (max-width: 600px) {
94   .global-warning-text {
95     display: none;
96   }
97
98   .global-warning .warning-icon {
99     /* background-color: #FFF;
100     box-shadow: 0px 0px 2px 5px #FFF;
101     border-radius: 10px; */
102   }
103 }
104
105 /*** global informations ***/
106 #addons-page .global-info-container {
107   background-color: #9C9CFF;
108 }
109
110 /* Plugins aren't yet disabled by safemode (bug 342333),
111    so don't show that warning when viewing plugins. */
112 #addons-page[warning="safemode"] .view-pane[type="plugin"] .global-warning-container,
113 #addons-page[warning="safemode"] #detail-view[loading="true"] .global-warning-container {
114   background-color: inherit;
115   background-image: none;
116 }
117
118
119 /*** notification icons ***/
120
121 .warning-icon {
122   list-style-image: url("chrome://global/skin/icons/warning-16.png");
123   width: 16px;
124   height: 16px;
125   margin: 3px 0;
126 }
127
128 .error-icon {
129   list-style-image: url("chrome://global/skin/icons/error-16.png");
130   width: 16px;
131   height: 16px;
132   margin: 3px 0;
133 }
134
135 .pending-icon,
136 .info-icon {
137   list-style-image: url("chrome://global/skin/icons/information-16.png");
138   width: 16px;
139   height: 16px;
140   margin: 3px 0;
141 }
142
143 .addon-view[pending="disable"] .pending-icon,
144 .addon-view[pending="uninstall"] .pending-icon {
145   list-style-image: url("chrome://global/skin/icons/warning-16.png");
146   width: 16px;
147   height: 15px;
148   margin: 3px 0;
149 }
150
151
152 /*** view alert boxes ***/
153
154 .alert-container {
155   -moz-box-align: center;
156 }
157
158 .alert-spacer-before {
159   -moz-box-flex: 1;
160 }
161
162 .alert-spacer-after {
163   -moz-box-flex: 3;
164 }
165
166 .alert {
167   -moz-box-align: center;
168   padding: 10px;
169   color: #000000;
170   border: 1px inset #CCD0DD;
171   border-radius: 8px;
172   background-color: #CCD0DD;
173   background-clip: padding-box;
174 }
175
176 .alert .alert-title {
177   font-weight: bold;
178   font-size: 200%;
179   margin-bottom: 15px;
180 }
181
182 .alert button {
183   margin: 1em 2em;
184 }
185
186 .loading {
187   list-style-image: url("chrome://global/skin/icons/loading.gif");
188   padding-left: 20px;
189   padding-right: 20px;
190 }
191
192
193 /*** category selector ***/
194
195 #categories {
196   -moz-appearance: none;
197   border: none;
198   -moz-margin-end: -1px;
199   background-color: transparent;
200   position: relative;
201   margin-top: 31px;
202 }
203
204 .category {
205   background-color: transparent;
206   color: #404040;
207   min-height: 0;
208   padding: 10px 4px;
209   border-width: 1px;
210   border-style: solid;
211   border-color: transparent;
212   -moz-box-align: center;
213   overflow: hidden;
214 }
215
216 .category[disabled] {
217   border-top: 0;
218   border-bottom: 0;
219   height: 0;
220   opacity: 0;
221   -moz-transition-property: height, opacity;
222   -moz-transition-duration: 1s, 0.8s;
223 }
224
225 .category:not([disabled]) {
226   height: 52px;
227   -moz-transition-property: height, opacity;
228   -moz-transition-duration: 1s, 0.8s;
229 }
230
231 .category[selected] {
232   background-color: #FFFFFF;
233   color: #000000;
234   border-color: #666699;
235 }
236
237 .category-name {
238   font-size: 150%;
239 }
240
241 /* Maximize the size of the viewport when the window is small */
242 @media all and (max-width: 800px) {
243   .category-name {
244     display: none;
245   }
246 }
247
248 .category-badge {
249   background-color: #666699;
250   padding: 2px 8px;
251   margin: 6px 0;
252   border: 1px outset #666699;
253   color: #FFFFFF;
254   font-weight: bold;
255   text-align: center;
256 }
257
258 .category-badge[value="0"] {
259   visibility: hidden;
260 }
261
262 .category-icon {
263   width: 32px;
264   height: 32px;
265   -moz-margin-start: 6px;
266 }
267
268 #category-search > .category-icon {
269   list-style-image: url("chrome://mozapps/skin/extensions/category-search.png");
270 }
271 #category-discover > .category-icon {
272   list-style-image: url("chrome://mozapps/skin/extensions/category-discover.png");
273 }
274 #category-locale > .category-icon {
275   list-style-image: url("chrome://mozapps/skin/extensions/category-languages.png");
276 }
277 #category-searchengine > .category-icon {
278   list-style-image: url("chrome://mozapps/skin/extensions/category-searchengines.png");
279 }
280 #category-extension > .category-icon {
281   list-style-image: url("chrome://mozapps/skin/extensions/category-extensions.png");
282 }
283 #category-theme > .category-icon {
284   list-style-image: url("chrome://mozapps/skin/extensions/category-themes.png");
285 }
286 #category-plugin > .category-icon {
287   list-style-image: url("chrome://mozapps/skin/extensions/category-plugins.png");
288 }
289 #category-availableUpdates > .category-icon {
290   list-style-image: url("chrome://mozapps/skin/extensions/category-available.png");
291 }
292 #category-recentUpdates > .category-icon {
293   list-style-image: url("chrome://mozapps/skin/extensions/category-recent.png");
294 }
295
296
297 /*** header ***/
298
299 #header {
300   margin-bottom: 18px;
301   height: 2em;
302 }
303
304 #header-search {
305   color: #000000;
306   border: 1px inset #CCD0DD;
307   padding: 3px;
308   background-color: #CCD0DD;
309   margin: 0;
310 }
311
312 #header-search .textbox-input:-moz-placeholder {
313   color: #808080;
314 }
315
316 #header-search[focused] {
317   background-color: #FFFFFF;
318 }
319
320 #header-utils-btn {
321   list-style-image: url("chrome://mozapps/skin/extensions/utilities.png");
322   -moz-margin-end: 16px;
323 }
324
325 .view-header {
326   background-color: #9999CC;
327   padding: 4px;
328   margin: 0;
329   min-height: 31px;
330   border-bottom: 1px solid #666699;
331 }
332
333
334 /*** sorters ***/
335
336 .sort-controls {
337   -moz-appearance: none;
338 }
339
340 .sorter {
341   -moz-appearance: none;
342   border: 1px solid transparent;
343   background-color: transparent;
344   color: #000000;
345   padding: 0 5px;
346   margin: 0 6px;
347   min-width: 12px !important;
348   -moz-box-direction: reverse;
349 }
350
351 .sorter .button-box {
352   padding-top: 0;
353   padding-bottom: 0;
354 }
355
356 .sorter:hover {
357   border: 1px outset #666699;
358 }
359
360 .sorter[checkState="1"],
361 .sorter[checkState="2"] {
362   background-color: #666699;
363   color: #FFFFFF;
364   border: 1px inset #666699;
365 }
366
367 .sorter[checkState="1"] {
368   list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
369 }
370
371 .sorter[checkState="2"] {
372   list-style-image: url("chrome://global/skin/arrow/arrow-up.gif");
373 }
374
375 .sorter .button-icon {
376   -moz-margin-start: 4px;
377 }
378
379
380 /*** discover view ***/
381
382 .discover-spacer-before,
383 .discover-spacer-after {
384   -moz-box-flex: 1;
385 }
386
387 #discover-error .alert {
388   max-width: 45em;
389   -moz-box-flex: 1;
390 }
391
392 .discover-logo {
393   list-style-image: url("chrome://mozapps/skin/extensions/discover-logo.png");
394   -moz-margin-end: 15px;
395 }
396
397 .discover-title {
398   font-weight: bold;
399   font-size: 24px;
400   /* font-family: MetaWebPro-Book, "Trebuchet MS", sans-serif; */
401   margin: 0 0 15px 0;
402 }
403
404 .discover-description {
405   text-align: justify;
406   margin: 0 0 15px 0;
407 }
408
409 .discover-footer {
410   text-align: justify;
411 }
412
413
414 /*** list ***/
415
416 .list {
417   margin: 0;
418   border: none;
419   background-color: transparent;
420 }
421
422 .addon {
423   border-bottom: 1px solid #9999CC;
424   padding: 5px;
425   background-origin: border-box;
426 }
427
428 .details {
429   cursor: pointer;
430   margin: 0;
431   -moz-margin-start: 10px;
432 }
433
434 .icon-container {
435   width: 48px;
436   height: 48px;
437   margin: 3px 7px;
438   -moz-box-align: center;
439   -moz-box-pack: center;
440 }
441
442 .icon {
443   list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png");
444   max-width: 48px;
445   max-height: 48px;
446 }
447
448 .addon[active="false"] .icon {
449 /*  filter: url("chrome://mozapps/skin/extensions/extensions.svg#greyscale"); */
450 }
451
452 .addon-view[type="theme"] .icon {
453   list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric.png");
454 }
455
456 .addon-view[type="locale"] .icon {
457   list-style-image: url("chrome://mozapps/skin/extensions/localeGeneric.png");
458 }
459
460 .addon-view[type="plugin"] .icon {
461   list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric.png");
462 }
463
464 .name-container {
465   font-size: 150%;
466   font-weight: bold;
467   color: #404040;
468   margin-bottom: 0;
469   -moz-box-align: end;
470   -moz-box-flex: 1;
471 }
472
473 .creator {
474   font-weight: bold;
475 }
476
477 .creator .text-link {
478   /* color: #0066CC; */
479 }
480
481 .description-container {
482   -moz-margin-start: 6px;
483   -moz-box-align: center;
484 }
485
486 .description {
487   margin: 0;
488 }
489
490 .warning,
491 .pending,
492 .error,
493 .info {
494   -moz-margin-start: 48px;
495   font-weight: bold;
496   -moz-box-align: center;
497 }
498
499 .content-container,
500 .basicinfo-container {
501   -moz-box-align: start;
502 }
503
504 .addon[status="installing"] > .content-container {
505   -moz-box-align: stretch;
506 }
507
508 .advancedinfo-container,
509 .update-info-container {
510   -moz-box-align: center;
511 }
512
513 .update-available {
514   -moz-box-align: end;
515 }
516
517 .install-status-container {
518   -moz-box-pack: end;
519   -moz-box-align: end;
520 }
521
522 .name-outer-container {
523   -moz-box-pack: center;
524 }
525
526 .relnotes-toggle-container,
527 .icon-outer-container {
528   -moz-box-pack: start;
529 }
530
531 .status-container,
532 .control-container {
533   -moz-box-pack: end;
534 }
535
536 .addon-view .warning {
537   color: #808000;
538 }
539
540 .addon-view .error {
541   color: #FF0000;
542 }
543
544 .addon-view .pending {
545   color: #33FF33;
546 }
547
548 .addon-view[pending="disable"] .pending,
549 .addon-view[pending="uninstall"] .pending {
550   color: #000000;
551 }
552
553 .addon .relnotes-container {
554   -moz-box-align: start;
555   -moz-margin-start: 6px;
556   height: 0;
557   overflow: hidden;
558   opacity: 0;
559   -moz-transition-property: height, opacity;
560   -moz-transition-duration: 0.5s, 0.5s;
561 }
562
563 .addon[show-relnotes] .relnotes-container {
564   opacity: 1;
565   -moz-transition-property: height, opacity;
566   -moz-transition-duration: 0.5s, 0.5s;
567 }
568
569 .addon .relnotes-header {
570   font-weight: bold;
571   margin: 10px 0;
572 }
573
574 .addon .relnotes-toggle {
575   border: none;
576   background: transparent;
577   font-weight: bold;
578   -moz-box-direction: reverse;
579   cursor: pointer;
580   list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
581 }
582
583 .addon .relnotes-toggle > .button-box > .button-icon {
584   -moz-padding-start: 4px;
585 }
586
587 .addon[show-relnotes] .relnotes-toggle {
588   list-style-image: url("chrome://global/skin/arrow/arrow-up.gif");
589 }
590
591 .addon[active="false"] {
592   /* background-color: rgba(135, 135, 135, 0.1); */
593 }
594
595 .addon-view[active="false"],
596 .addon-view[active="false"] .name-container {
597   color: #666699;
598 }
599
600 .addon-view[notification="warning"] {
601   background-color: #FFFFCC;
602 }
603
604 .addon-view[notification="error"] {
605   background-color: #FFD0DD;
606 }
607
608 .addon-view[notification="info"] {
609   background-color: #9999CC;
610 }
611
612 .addon-view[pending="enable"],
613 .addon-view[pending="upgrade"],
614 .addon-view[pending="install"] {
615   background-color: #CCFFDD;
616 }
617
618 .addon-view[pending="enable"] .pending,
619 .addon-view[pending="upgrade"] .pending,
620 .addon-view[pending="install"] .pending {
621   color: #008000;
622 }
623
624 .addon-view[pending="disable"],
625 .addon-view[pending="uninstall"] {
626   background-color: #808080;
627 }
628
629 .addon[selected] {
630   background-color: #336699;
631   color: #FFFFFF;
632 }
633
634 .addon[selected] .name-container {
635   color: #FFFFFF;
636 }
637
638 .addon[active="false"][selected] {
639   color: #000000;
640 }
641
642 .addon[active="false"][selected] .name-container {
643   color: #222233;
644 }
645
646
647 /*** item - uninstalled ***/
648
649 .addon[status="uninstalled"] {
650   border: none;
651 }
652
653 .addon[status="uninstalled"] > .container {
654   -moz-box-align: center;
655   padding: 4px 20px;
656   background-color: #808080;
657   border-radius: 8px;
658   font-size: 120%;
659 }
660
661 .addon[status="uninstalled"][selected] {
662   background-color: transparent;
663 }
664
665
666 /*** search view ***/
667
668 #search-filter {
669   padding: 5px 20px;
670   -moz-box-align: center;
671   background-color: #FFFFFF;
672   font-size: 120%;
673   border-bottom: 1px solid #666699;
674   overflow-x: hidden;
675 }
676
677 #search-filter-label {
678   font-weight: bold;
679   color: #808080;
680 }
681
682 .search-filter-radio {
683   -moz-appearance: none;
684   padding: 0 6px;
685   margin: 0 3px;
686   border-radius: 10000px;
687 }
688
689 .search-filter-radio[selected] {
690   background-color: #3366699;
691   color: #000000;
692 }
693
694 .search-filter-radio .radio-check-box1 {
695   display: none;
696 }
697
698 .search-filter-radio .radio-icon {
699   display: none;
700 }
701
702 #search-allresults-link {
703   margin-top: 1em;
704   margin-bottom: 2em;
705 }
706
707 /*** detail view ***/
708
709 #detail-view .loading {
710   opacity: 0;
711 }
712
713 #detail-view[loading-extended] .loading {
714   opacity: 1;
715   -moz-transition-property: opacity;
716   -moz-transition-duration: 1s;
717 }
718
719 .detail-view-container {
720   padding: 0 2em 2em 2em;
721   font-size: 110%;
722 }
723
724 #detail-notifications {
725   margin-top: 1em;
726   margin-bottom: 2em;
727 }
728
729 #detail-notifications .warning,
730 #detail-notifications .pending,
731 #detail-notifications .error {
732   -moz-margin-start: 0;
733 }
734
735 #detail-icon {
736   -moz-margin-end: 10px;
737   margin-top: 6px;
738   max-width: 64px;
739   max-height: 64px;
740 }
741
742 #detail-summary {
743   margin-bottom: 2em;
744 }
745
746 #detail-name-container {
747   font-size: 200%;
748 }
749
750 #detail-screenshot {
751   -moz-margin-end: 2em;
752   max-width: 300px;
753   max-height: 300px;
754 }
755
756 #detail-screenshot[loading] {
757   background-image: url("chrome://communicator/skin/brand/throbber-anim.gif");
758   background-position: 50% 50%;
759   background-repeat: no-repeat;
760 }
761
762 #detail-screenshot[loading="error"] {
763   background-image: url("chrome://global/skin/icons/alert-error.gif");
764 }
765
766 #detail-desc-container {
767   margin-bottom: 2em;
768 }
769
770 #detail-desc, #detail-fulldesc {
771   -moz-margin-start: 6px;
772   white-space: pre-wrap;
773   /* This is necessary to fix layout issues with multi-line descriptions, see
774      bug 592712*/
775   outline: solid transparent;
776   min-width: 8em;
777 }
778
779 #detail-fulldesc {
780   margin-top: 1em;
781 }
782
783 #detail-contributions {
784   border-radius: 5px;
785   border: 1px solid #666699;
786   margin-bottom: 2em;
787   padding: 1em;
788   background-color: #FFFFCC;
789 }
790
791 #detail-contrib-description {
792   font-style: italic;
793   margin-bottom: 1em;
794   color: #000000;
795 }
796
797 #detail-contrib-suggested {
798   color: #808080;
799   font-weight: bold;
800 }
801
802 #detail-contrib-btn {
803   list-style-image: url("chrome://mozapps/skin/extensions/heart.png");
804 }
805
806 #detail-contrib-btn .button-icon {
807   -moz-margin-end: 3px;
808 }
809
810 #detail-grid {
811   margin-bottom: 2em;
812 }
813
814 #detail-grid > columns > column:first-child {
815   max-width: 25em;
816 }
817
818 .detail-row[first-row="true"],
819 .detail-row-complex[first-row="true"],
820 setting[first-row="true"] {
821   border-top: none;
822 }
823
824 .detail-row,
825 .detail-row-complex,
826 setting {
827   border-top: 1px solid #808080;
828   -moz-box-align: center;
829   min-height: 30px;
830 }
831
832 #detail-controls {
833   margin-bottom: 1em;
834 }
835
836 #detail-view[active="false"]:not([pending]):not([notification]) {
837   /* background-color: foo; */
838 }
839
840 setting[first-row="true"] {
841   margin-top: 2em;
842 }
843
844 .preferences-description {
845   font-size: 90.9%;
846   color: #808080;
847   margin-top: -2px;
848   -moz-margin-start: 2em;
849 }
850
851 setting[type="string"] > .setting-input > textbox {
852   -moz-box-flex: 1;
853 }
854
855 setting[type="radio"] > radiogroup {
856   -moz-box-orient: horizontal;
857 }
858
859 menulist { /* Fixes some styling inconsistencies */
860   margin: 1px 5px 2px 5px;
861 }
862
863 /*** creator ***/
864
865 .creator > label {
866   -moz-margin-start: 0;
867   -moz-margin-end: 0;
868 }
869
870 .creator > .text-link {
871   margin-top: 1px;
872   margin-bottom: 1px;
873 }
874
875
876 /*** rating ***/
877
878 .meta-rating {
879   -moz-margin-end: 0;
880   padding-top: 2px;
881 }
882
883 .meta-rating > .star {
884   list-style-image: url("chrome://mozapps/skin/extensions/rating-not-won.png");
885   padding: 0 1px;
886 }
887
888 .meta-rating > .star[on="true"] {
889   list-style-image: url("chrome://mozapps/skin/extensions/rating-won.png");
890 }
891
892
893 /*** download progress ***/
894
895 .download-progress {
896   background-color: #CCD0DD;
897   border: 1px solid #808080;
898   width: 200px;
899   height: 21px;
900   margin: 0 8px;
901 }
902
903 .download-progress[mode="undetermined"] .status-container {
904   padding: 0 2px;
905 }
906
907 .download-progress .start-cap,
908 .download-progress[complete] .end-cap,
909 .download-progress[mode="undetermined"] .end-cap,
910 .download-progress .progress .progress-bar {
911   background-color: #336699;
912 }
913
914 .download-progress .progress .progress-bar  {
915   border-left-width: 0;
916   border-right-width: 0;
917   min-height: 21px;
918 }
919
920 .download-progress .progress {
921   background-color: transparent;
922   padding: 0;
923   margin: 0;
924   border: none;
925 }
926
927 .download-progress .start-cap, .download-progress .end-cap {
928   width: 12px;
929 }
930
931 .download-progress .start-cap:-moz-locale-dir(ltr),
932 .download-progress .end-cap:-moz-locale-dir(rtl) {
933   border-radius: 3px 0 0 3px;
934 }
935
936 .download-progress .end-cap:-moz-locale-dir(ltr),
937 .download-progress .start-cap:-moz-locale-dir(rtl) {
938   border-radius: 0 3px 3px 0;
939 }
940
941 .download-progress .cancel {
942   -moz-appearance: none;
943   background-color: #CCD0DD;
944   border: 1px solid #666699;
945   padding: 3px;
946   min-width: 0;
947   margin: 3px;
948 }
949
950 .download-progress .cancel .button-box {
951   padding: 0;
952   border: none;
953 }
954
955 .download-progress .cancel .button-text {
956   display: none;
957 }
958
959 .download-progress .cancel .button-icon {
960   -moz-margin-start: 0;
961 }
962
963 .download-progress .cancel {
964   list-style-image: url('chrome://mozapps/skin/extensions/cancel.png');
965 }
966
967 .download-progress .status-container {
968   -moz-box-align: center;
969 }
970
971 .download-progress .status {
972 /*  text-shadow: #FFF 0 0 2px; */
973 }
974
975 /*** install status ***/
976
977 .install-status {
978   -moz-box-align: center;
979 }
980
981
982 /*** check for updates ***/
983
984 #updates-container {
985   -moz-box-align: center;
986 }
987
988 #updates-container .button-link {
989   font-weight: bold;
990 }
991
992 #updates-installed,
993 #updates-downloaded {
994   color: #00CC00;
995   font-weight: bold;
996 }
997
998 #update-selected {
999   margin: 12px;
1000 }
1001
1002 /*** buttons ***/
1003
1004 .addon-control[disabled="true"] {
1005   display: none;
1006 }
1007
1008 button.button-link {
1009   background: transparent;
1010   border: none;
1011   text-decoration: underline;
1012   color: #0000FF;
1013   cursor: pointer;
1014   min-width: 0;
1015   margin: 0 6px;
1016 }
1017
1018 /* Needed to override normal button style from inContent.css */
1019 button.button-link:not([disabled="true"]):active:hover {
1020 }