make pending visible when enabling is pending
[themes.git] / LCARStrek / 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: #000000;
40   color: #FF9F00;
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   border: 1px solid #9C9CFF;
48   border-radius: 5px;
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: #FFCF00;
95 }
96
97 #detail-view .global-warning {
98   padding: 4px 12px;
99   border-bottom: 3px solid #000000;  
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: 1px 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: 1px 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: 1px 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:-moz-locale-dir(ltr) {
220   border-top-left-radius: 5px;
221   border-bottom-left-radius: 5px;
222 }
223
224 .category:-moz-locale-dir(rtl) {
225   border-top-right-radius: 5px;
226   border-bottom-right-radius: 5px;
227 }
228
229 .category[disabled] {
230   border-top: 0;
231   border-bottom: 0;
232   height: 0;
233   opacity: 0;
234   -moz-transition-property: height, opacity;
235   -moz-transition-duration: 1s, 0.8s;
236 }
237
238 .category:not([disabled]) {
239   height: 52px;
240   -moz-transition-property: height, opacity;
241   -moz-transition-duration: 1s, 0.8s;
242 }
243
244 .category[selected] {
245   background-color: #008484;
246   color: #FFCF00;
247   border-color: #9C9CFF;
248 }
249
250 .category-name {
251   font-size: 150%;
252 }
253
254 /* Maximize the size of the viewport when the window is small */
255 @media all and (max-width: 800px) {
256   .category-name {
257     display: none;
258   }
259 }
260
261 .category-badge {
262   background-color: #E7ADE7;
263   padding: 2px 8px;
264   margin: 6px 0;
265   border-radius: 10000px;
266   color: #000000;
267   font-weight: bold;
268   text-align: center;
269 }
270
271 .category-badge[value="0"] {
272   visibility: hidden;
273 }
274
275 .category-icon {
276   width: 32px;
277   height: 32px;
278   -moz-margin-start: 6px;
279 }
280
281 #category-search > .category-icon {
282   list-style-image: url("chrome://mozapps/skin/extensions/category-search.png");
283 }
284 #category-discover > .category-icon {
285   list-style-image: url("chrome://mozapps/skin/extensions/category-discover.png");
286 }
287 #category-languages > .category-icon {
288   list-style-image: url("chrome://mozapps/skin/extensions/category-languages.png");
289 }
290 #category-searchengines > .category-icon {
291   list-style-image: url("chrome://mozapps/skin/extensions/category-searchengines.png");
292 }
293 #category-extensions > .category-icon {
294   list-style-image: url("chrome://mozapps/skin/extensions/category-extensions.png");
295 }
296 #category-themes > .category-icon {
297   list-style-image: url("chrome://mozapps/skin/extensions/category-themes.png");
298 }
299 #category-plugins > .category-icon {
300   list-style-image: url("chrome://mozapps/skin/extensions/category-plugins.png");
301 }
302 #category-availableUpdates > .category-icon {
303   list-style-image: url("chrome://mozapps/skin/extensions/category-available.png");
304 }
305 #category-recentUpdates > .category-icon {
306   list-style-image: url("chrome://mozapps/skin/extensions/category-recent.png");
307 }
308
309
310 /*** header ***/
311
312 #header {
313   margin-bottom: 18px;
314   height: 2em;
315 }
316
317 #header-search {
318   color: #E7ADE7;
319   border: 1px solid #9C9CFF;
320   border-radius: 4px;
321   padding: 3px;
322   background-color: #000000;
323   margin: 0;
324 }
325
326 #header-search .textbox-input:-moz-placeholder {
327   color: #8050B0;
328 }
329
330 #header-search[focused="true"] {
331   border-color: #008484;
332 }
333
334 #header-utils-btn {
335   min-width: 4.5em;
336   list-style-image: url("chrome://mozapps/skin/extensions/utilities.png");
337   -moz-margin-end: 18px;
338 }
339
340 #header-utils-btn:hover,
341 #header-utils-btn:hover:active,
342 #header-utils-btn[open="true"] {
343   list-style-image: url("chrome://mozapps/skin/extensions/utilities-hover.png");
344 }
345
346 #header-utils-btn > .button-box > .button-menu-dropmarker {
347   border: none;
348   background: transparent;
349 }
350
351 #header-utils-btn:hover > .button-box > .button-menu-dropmarker {
352   list-style-image: url("chrome://global/skin/arrow/arrow-down-hover.gif");
353 }
354
355 .view-header {
356   background-color: #9C9CFF;
357   color: #000000;
358   border-radius: 8px;
359   padding: 0px 1em;
360   margin: 3px;
361   min-height: 31px;
362 }
363
364
365 /*** sorters ***/
366
367 .sort-controls {
368   -moz-appearance: none;
369   border-right: 3px solid #000000;
370 }
371
372 .sorter {
373   -moz-appearance: none;
374   border: none;
375   border-left: 3px solid #000000;
376   background-color: transparent;
377   color: #8050B0;
378   border-radius: 0;
379   padding: 0 6px;
380   -moz-padding-start: 6px;
381   -moz-padding-end: 3px;
382   margin: 0;
383   min-width: 12px !important;
384   -moz-box-direction: reverse;
385 }
386 .sorter:hover {
387   background-color: #FFCF00;
388   color: #000000;
389 }
390
391 .sorter .button-box {
392   padding-top: 0;
393   padding-bottom: 0;
394 }
395
396 .sorter[checkState="1"],
397 .sorter[checkState="2"] {
398   background-color: #008484;
399   color: #FFCF00;
400 }
401
402 .sorter[checkState="1"] {
403   list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
404 }
405
406 .sorter[checkState="2"] {
407   list-style-image: url("chrome://global/skin/arrow/arrow-up.gif");
408 }
409
410 .sorter .button-icon {
411   -moz-margin-start: 4px;
412 }
413
414
415 /*** discover view ***/
416
417 .discover-spacer-before,
418 .discover-spacer-after {
419   -moz-box-flex: 1;
420 }
421
422 #discover-error .alert {
423   max-width: 45em;
424   -moz-box-flex: 1;
425 }
426
427 .discover-logo {
428   list-style-image: url("chrome://mozapps/skin/extensions/discover-logo.png");
429   -moz-margin-end: 15px;
430 }
431
432 .discover-title {
433   font-weight: bold;
434   font-size: 24px;
435   /* font-family: MetaWebPro-Book, "Trebuchet MS", sans-serif; */
436   margin: 0 0 15px 0;
437 }
438
439 .discover-description {
440   text-align: justify;
441   margin: 0 0 15px 0;
442 }
443
444 .discover-footer {
445   text-align: justify;
446 }
447
448
449 /*** list ***/
450
451 .list {
452   margin: 0;
453   border: none;
454   background-color: transparent;
455 }
456
457 .addon {
458   border-bottom: 1px solid #9C9CFF;
459   padding: 5px;
460   background-origin: border-box;
461 }
462
463 .details {
464   cursor: pointer;
465   margin: 0;
466   -moz-margin-start: 10px;
467 }
468
469 .icon-container {
470   width: 48px;
471   height: 48px;
472   margin: 3px 7px;
473 }
474
475 .icon {
476   list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png");
477   max-width: 48px;
478   max-height: 48px;
479 }
480
481 .addon[active="false"] .icon {
482 /*  filter: url("chrome://mozapps/skin/extensions/extensions.svg#greyscale"); */
483 }
484
485 .addon-view[type="theme"] .icon {
486   list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric.png");
487 }
488
489 .addon-view[type="locale"] .icon {
490   list-style-image: url("chrome://mozapps/skin/extensions/localeGeneric.png");
491 }
492
493 .addon-view[type="plugin"] .icon {
494   list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric.png");
495 }
496
497 .name-container {
498   font-size: 150%;
499   font-weight: bold;
500   color: #9C9CFF;
501   margin-bottom: 0;
502 }
503
504 .creator {
505   font-weight: bold;
506 }
507
508 .creator .text-link {
509   /* color: #0066CC; */
510 }
511
512 .description-container {
513   margin-top: 8px;
514   -moz-margin-start: 6px;
515 }
516
517 .description {
518   margin: 0;
519 }
520
521 .warning,
522 .pending,
523 .error,
524 .info {
525   -moz-margin-start: 48px;
526   font-weight: bold;
527 }
528
529 .addon-view .warning {
530   color: #FFCF00;
531 }
532
533 .addon-view .error {
534   color: #FF0000;
535 }
536
537 .addon-view .pending {
538   color: #008484;
539 }
540
541 .addon-view[pending="disable"] .pending,
542 .addon-view[pending="uninstall"] .pending {
543   color: #FF9C00;
544 }
545
546 .addon .relnotes-container {
547   -moz-box-align: start;
548   -moz-margin-start: 6px;
549   height: 0;
550   overflow: hidden;
551   opacity: 0;
552   -moz-transition-property: height, opacity;
553   -moz-transition-duration: 0.5s, 0.5s;
554 }
555
556 .addon[show-relnotes] .relnotes-container {
557   opacity: 1;
558   -moz-transition-property: height, opacity;
559   -moz-transition-duration: 0.5s, 0.5s;
560 }
561
562 .addon .relnotes-header {
563   font-weight: bold;
564   margin: 10px 0;
565 }
566
567 .addon .relnotes-toggle {
568   border: none;
569   background: transparent;
570   font-weight: bold;
571   -moz-box-direction: reverse;
572   cursor: pointer;
573   list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
574 }
575
576 .addon .relnotes-toggle > .button-box > .button-icon {
577   -moz-padding-start: 4px;
578 }
579
580 .addon[show-relnotes] .relnotes-toggle {
581   list-style-image: url("chrome://global/skin/arrow/arrow-up.gif");
582 }
583
584 .addon[active="false"] {
585   /* background-color: rgba(135, 135, 135, 0.1); */
586 }
587
588 .addon-view[active="false"],
589 .addon-view[active="false"] .name-container {
590   color: #E7ADE7;
591 }
592
593 .addon-view[notification="warning"] {
594   background-color : #FFCF00;
595   color: #000000;
596 }
597
598 .addon-view[notification="warning"] .warning {
599   color: #000000;
600 }
601
602 .addon-view[notification="warning"] .name-container {
603   color: #000000;
604 }
605
606 .addon-view[notification="error"] {
607   background-color: #FF0000;
608   color: #000000;
609 }
610
611 .addon-view[notification="error"] .error {
612   color: #000000;
613 }
614
615 .addon-view[notification="info"] {
616   background-color: #9C9CFF;
617   color: #000000;
618 }
619
620 .addon-view[pending="enable"],
621 .addon-view[pending="upgrade"],
622 .addon-view[pending="install"] {
623   background-color: #008484;
624 }
625
626 .addon-view[pending="enable"] .pending,
627 .addon-view[pending="upgrade"] .pending,
628 .addon-view[pending="install"] .pending {
629   color: #000000;
630 }
631
632 .addon-view[pending="disable"],
633 .addon-view[pending="uninstall"] {
634   color: #8050B0;
635 }
636
637
638 /*** item - uninstalled ***/
639
640 .addon[status="uninstalled"] {
641   border: none;
642 }
643
644 .addon[status="uninstalled"] > .container {
645   -moz-box-align: center;
646   padding: 4px 20px;
647   background-color: #8050B0;
648   border-radius: 8px;
649   font-size: 120%;
650 }
651
652 .addon[status="uninstalled"][selected] {
653   background-color: transparent;
654 }
655
656 .addon[selected] {
657   background-color: #008484;
658   color: #FF9F00;
659 }
660
661 .addon[selected] .name-container {
662   color: #FFCF00;
663 }
664
665 .addon[active="false"][selected] {
666   color: #E7ADE7;
667 }
668
669 .addon[active="false"][selected] .name-container {
670   color: #E7ADE7;
671 }
672
673
674 /*** search view ***/
675
676 #search-filter {
677   padding: 5px 20px;
678   -moz-box-align: center;
679   background-color: #000000;
680   font-size: 120%;
681   border-bottom: 1px solid #9C9CFF;
682   overflow-x: hidden;
683 }
684
685 #search-filter-label {
686   font-weight: bold;
687   color: #FFCF00;
688 }
689
690 .search-filter-radio {
691   padding: 0 6px;
692   margin: 0 3px;
693   border-radius: 10000px;
694 }
695
696 .search-filter-radio[selected] {
697   background-color: #008484;
698   color: #000000;
699 }
700
701 .search-filter-radio .radio-check-box1 {
702   display: none;
703 }
704
705 .search-filter-radio .radio-icon {
706   display: none;
707 }
708
709 #search-allresults-link {
710   margin-top: 1em;
711   margin-bottom: 2em;
712 }
713
714 /*** detail view ***/
715
716 #detail-view .loading {
717   opacity: 0;
718 }
719
720 #detail-view[loading-extended] .loading {
721   opacity: 1;
722   -moz-transition-property: opacity;
723   -moz-transition-duration: 1s;
724 }
725
726 .detail-view-container {
727   padding: 0 2em 2em 2em;
728   font-size: 110%;
729 }
730
731 #detail-notifications {
732   margin-top: 1em;
733   margin-bottom: 2em;
734 }
735
736 #detail-notifications .warning,
737 #detail-notifications .pending,
738 #detail-notifications .error {
739   -moz-margin-start: 0;
740 }
741
742 #detail-icon {
743   -moz-margin-end: 10px;
744   margin-top: 6px;
745   max-width: 64px;
746   max-height: 64px;
747 }
748
749 #detail-summary {
750   margin-bottom: 2em;
751 }
752
753 #detail-name-container {
754   font-size: 200%;
755 }
756
757 #detail-screenshot {
758   -moz-margin-end: 2em;
759   max-width: 300px;
760   max-height: 300px;
761 }
762
763 #detail-desc-container {
764   margin-bottom: 2em;
765 }
766
767 #detail-desc, #detail-fulldesc {
768   -moz-margin-start: 6px;
769   white-space: pre-wrap;
770   /* This is necessary to fix layout issues with multi-line descriptions, see
771      bug 592712*/
772   outline: solid transparent;
773   min-width: 8em;
774 }
775
776 #detail-fulldesc {
777   margin-top: 1em;
778 }
779
780 #detail-contributions {
781   border-radius: 5px;
782   border: 1px solid #9C9CFF;
783   margin-bottom: 2em;
784   padding: 1em;
785   background-color: #FFCF00;
786 }
787
788 #detail-contrib-description {
789   font-style: italic;
790   margin-bottom: 1em;
791   color: #000000;
792 }
793
794 #detail-contrib-suggested {
795   color: #8050B0;
796   font-weight: bold;
797 }
798
799 #detail-contrib-btn {
800   list-style-image: url("chrome://mozapps/skin/extensions/heart.png");
801 }
802
803 #detail-contrib-btn .button-icon {
804   -moz-margin-end: 3px;
805 }
806
807 #detail-grid {
808   margin-bottom: 2em;
809 }
810
811 .detail-row[first-row="true"],
812 .detail-row-complex[first-row="true"] {
813   border-top: none;
814 }
815
816 .detail-row,
817 .detail-row-complex {
818   border-top: 1px solid #9C9CFF;
819   -moz-box-align: center;
820 }
821
822 .detail-row-value {
823   -moz-margin-start: 0;
824 }
825
826 #detail-controls {
827   margin-bottom: 1em;
828 }
829
830 #detail-view[active="false"]:not([pending]):not([notification]) {
831   /* background-color: foo; */
832 }
833
834 /*** creator ***/
835
836 .creator > label {
837   -moz-margin-end: 0;
838 }
839
840 .creator > .text-link {
841   margin-top: 1px;
842   margin-bottom: 1px;
843 }
844
845
846 /*** rating ***/
847
848 .meta-rating {
849   -moz-margin-start: 0;
850   -moz-margin-end: 0;
851   padding-top: 2px;
852 }
853
854 .meta-rating > .star {
855   list-style-image: url("chrome://mozapps/skin/extensions/rating-not-won.png");
856   padding: 0 1px;
857 }
858
859 .meta-rating > .star[on="true"] {
860   list-style-image: url("chrome://mozapps/skin/extensions/rating-won.png");
861 }
862
863
864 /*** download progress ***/
865
866 .download-progress {
867   background-color: #000000;
868   border-radius: 10000px;
869   border: 1px solid #FF9F00;
870   width: 200px;
871   height: 21px;
872   margin: 0 8px;
873 }
874
875 .download-progress[mode="undetermined"] .status-container {
876   padding: 0 2px;
877 }
878
879 .download-progress .start-cap,
880 .download-progress[complete] .end-cap,
881 .download-progress[mode="undetermined"] .end-cap,
882 .download-progress .progress .progress-bar {
883   background-color: #008484;
884 }
885
886 .download-progress .progress .progress-bar  {
887   border-left-width: 0;
888   border-right-width: 0;
889   min-height: 21px;
890 }
891
892 .download-progress .progress {
893   background-color: transparent;
894   padding: 0;
895   margin: 0;
896   border: none;
897 }
898
899 .download-progress .start-cap, .download-progress .end-cap {
900   width: 12px;
901 }
902
903 .download-progress .start-cap:-moz-locale-dir(ltr),
904 .download-progress .end-cap:-moz-locale-dir(rtl) {
905   border-radius: 3px 0 0 3px;
906 }
907
908 .download-progress .end-cap:-moz-locale-dir(ltr),
909 .download-progress .start-cap:-moz-locale-dir(rtl) {
910   border-radius: 0 3px 3px 0;
911 }
912
913 .download-progress .cancel {
914   -moz-appearance: none;
915   background-color: #8050B0;
916   border: 1px solid #9C9CFF;
917   padding: 3px;
918   border-radius: 3px;
919   min-width: 0;
920   margin: 3px;
921 }
922
923 .download-progress .cancel .button-box {
924   padding: 0;
925   border: none;
926 }
927
928 .download-progress .cancel .button-text {
929   display: none;
930 }
931
932 .download-progress .cancel .button-icon {
933   -moz-margin-start: 0;
934 }
935
936 .download-progress .cancel {
937   list-style-image: url('chrome://mozapps/skin/extensions/cancel.png');
938 }
939
940 .download-progress .status-container {
941   -moz-box-align: center;
942 }
943
944 .download-progress .status {
945 /*  text-shadow: #FFF 0 0 2px; */
946 }
947
948 /*** install status ***/
949
950 .install-status {
951   -moz-box-align: center;
952 }
953
954
955 /*** check for updates ***/
956
957 #updates-container {
958   -moz-box-align: center;
959 }
960
961 #updates-container .button-link {
962   font-weight: bold;
963 }
964
965 #updates-installed,
966 #updates-downloaded {
967   color: #008484;
968   font-weight: bold;
969 }
970
971 #update-selected {
972   margin: 12px;
973 }
974
975 /*** buttons ***/
976
977 .addon-control[disabled="true"] {
978   display: none;
979 }
980
981 .button-link {
982   background: transparent;
983   border: none;
984   text-decoration: underline;
985   color: blue;
986   cursor: pointer;
987   min-width: 0;
988   margin: 0 6px;
989 }