f428145b42de4ead922a438642ea6f200bdc263f
[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-desc-container {
757   margin-bottom: 2em;
758 }
759
760 #detail-desc, #detail-fulldesc {
761   -moz-margin-start: 6px;
762   white-space: pre-wrap;
763   /* This is necessary to fix layout issues with multi-line descriptions, see
764      bug 592712*/
765   outline: solid transparent;
766   min-width: 8em;
767 }
768
769 #detail-fulldesc {
770   margin-top: 1em;
771 }
772
773 #detail-contributions {
774   border-radius: 5px;
775   border: 1px solid #666699;
776   margin-bottom: 2em;
777   padding: 1em;
778   background-color: #FFFFCC;
779 }
780
781 #detail-contrib-description {
782   font-style: italic;
783   margin-bottom: 1em;
784   color: #000000;
785 }
786
787 #detail-contrib-suggested {
788   color: #808080;
789   font-weight: bold;
790 }
791
792 #detail-contrib-btn {
793   list-style-image: url("chrome://mozapps/skin/extensions/heart.png");
794 }
795
796 #detail-contrib-btn .button-icon {
797   -moz-margin-end: 3px;
798 }
799
800 #detail-grid {
801   margin-bottom: 2em;
802 }
803
804 #detail-grid > columns > column:first-child {
805   max-width: 25em;
806 }
807
808 .detail-row[first-row="true"],
809 .detail-row-complex[first-row="true"],
810 setting[first-row="true"] {
811   border-top: none;
812 }
813
814 .detail-row,
815 .detail-row-complex,
816 setting {
817   border-top: 1px solid #808080;
818   -moz-box-align: center;
819   min-height: 30px;
820 }
821
822 #detail-controls {
823   margin-bottom: 1em;
824 }
825
826 #detail-view[active="false"]:not([pending]):not([notification]) {
827   /* background-color: foo; */
828 }
829
830 setting[first-row="true"] {
831   margin-top: 2em;
832 }
833
834 .preferences-description {
835   font-size: 90.9%;
836   color: #808080;
837   margin-top: -2px;
838   -moz-margin-start: 2em;
839 }
840
841 setting[type="string"] > .setting-input > textbox {
842   -moz-box-flex: 1;
843 }
844
845 setting[type="radio"] > radiogroup {
846   -moz-box-orient: horizontal;
847 }
848
849 menulist { /* Fixes some styling inconsistencies */
850   margin: 1px 5px 2px 5px;
851 }
852
853 /*** creator ***/
854
855 .creator > label {
856   -moz-margin-start: 0;
857   -moz-margin-end: 0;
858 }
859
860 .creator > .text-link {
861   margin-top: 1px;
862   margin-bottom: 1px;
863 }
864
865
866 /*** rating ***/
867
868 .meta-rating {
869   -moz-margin-end: 0;
870   padding-top: 2px;
871 }
872
873 .meta-rating > .star {
874   list-style-image: url("chrome://mozapps/skin/extensions/rating-not-won.png");
875   padding: 0 1px;
876 }
877
878 .meta-rating > .star[on="true"] {
879   list-style-image: url("chrome://mozapps/skin/extensions/rating-won.png");
880 }
881
882
883 /*** download progress ***/
884
885 .download-progress {
886   background-color: #CCD0DD;
887   border: 1px solid #808080;
888   width: 200px;
889   height: 21px;
890   margin: 0 8px;
891 }
892
893 .download-progress[mode="undetermined"] .status-container {
894   padding: 0 2px;
895 }
896
897 .download-progress .start-cap,
898 .download-progress[complete] .end-cap,
899 .download-progress[mode="undetermined"] .end-cap,
900 .download-progress .progress .progress-bar {
901   background-color: #336699;
902 }
903
904 .download-progress .progress .progress-bar  {
905   border-left-width: 0;
906   border-right-width: 0;
907   min-height: 21px;
908 }
909
910 .download-progress .progress {
911   background-color: transparent;
912   padding: 0;
913   margin: 0;
914   border: none;
915 }
916
917 .download-progress .start-cap, .download-progress .end-cap {
918   width: 12px;
919 }
920
921 .download-progress .start-cap:-moz-locale-dir(ltr),
922 .download-progress .end-cap:-moz-locale-dir(rtl) {
923   border-radius: 3px 0 0 3px;
924 }
925
926 .download-progress .end-cap:-moz-locale-dir(ltr),
927 .download-progress .start-cap:-moz-locale-dir(rtl) {
928   border-radius: 0 3px 3px 0;
929 }
930
931 .download-progress .cancel {
932   -moz-appearance: none;
933   background-color: #CCD0DD;
934   border: 1px solid #666699;
935   padding: 3px;
936   min-width: 0;
937   margin: 3px;
938 }
939
940 .download-progress .cancel .button-box {
941   padding: 0;
942   border: none;
943 }
944
945 .download-progress .cancel .button-text {
946   display: none;
947 }
948
949 .download-progress .cancel .button-icon {
950   -moz-margin-start: 0;
951 }
952
953 .download-progress .cancel {
954   list-style-image: url('chrome://mozapps/skin/extensions/cancel.png');
955 }
956
957 .download-progress .status-container {
958   -moz-box-align: center;
959 }
960
961 .download-progress .status {
962 /*  text-shadow: #FFF 0 0 2px; */
963 }
964
965 /*** install status ***/
966
967 .install-status {
968   -moz-box-align: center;
969 }
970
971
972 /*** check for updates ***/
973
974 #updates-container {
975   -moz-box-align: center;
976 }
977
978 #updates-container .button-link {
979   font-weight: bold;
980 }
981
982 #updates-installed,
983 #updates-downloaded {
984   color: #00CC00;
985   font-weight: bold;
986 }
987
988 #update-selected {
989   margin: 12px;
990 }
991
992 /*** buttons ***/
993
994 .addon-control[disabled="true"] {
995   display: none;
996 }
997
998 button.button-link {
999   background: transparent;
1000   border: none;
1001   text-decoration: underline;
1002   color: #0000FF;
1003   cursor: pointer;
1004   min-width: 0;
1005   margin: 0 6px;
1006 }
1007
1008 /* Needed to override normal button style from inContent.css */
1009 button.button-link:not([disabled="true"]):active:hover {
1010 }