fix a few coloring problems in both themes with new add-ons manager
[themes.git] / LCARStrek / mozapps / extensions / extensions.css
CommitLineData
4c18c82c
RK
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
706c344c
RK
38#addons-page {
39 background-color: #000000;
40 margin: 20px;
e10e7add
RK
41}
42
706c344c
RK
43#view-port {
44 border: 1px solid #9C9CFF;
569543b3 45 border-radius: 5px;
4c18c82c
RK
46}
47
0de07750
RK
48.nav-button {
49 list-style-image: url("chrome://communicator/skin/icons/communicatoricons.png");
50 min-width: 0;
51 -moz-margin-end: 0;
52}
53
54#back-btn:-moz-locale-dir(ltr),
55#forward-btn:-moz-locale-dir(rtl) {
56 -moz-image-region: rect(42px 25px 63px 0px);
57}
58
59#back-btn[disabled="true"]:-moz-locale-dir(ltr),
60#forward-btn[disabled="true"]:-moz-locale-dir(rtl) {
61 -moz-image-region: rect(42px 50px 63px 25px);
62}
63
64#back-btn:-moz-locale-dir(rtl),
65#forward-btn:-moz-locale-dir(ltr) {
66 -moz-image-region: rect(63px 25px 84px 0px);
67}
68
69#back-btn[disabled="true"]:-moz-locale-dir(rtl),
70#forward-btn[disabled="true"]:-moz-locale-dir(ltr) {
71 -moz-image-region: rect(63px 50px 84px 25px);
72}
73
569543b3
RK
74/*** global warnings ***/
75
76.global-warning {
77 -moz-box-align: center;
78 padding: 0 8px;
79 color: #000000;
80 font-weight: bold;
81}
82
83#addons-page[warning] .global-warning-container {
84 background-color: #FFCF00;
85}
86
87#detail-view .global-warning {
88 padding: 4px 12px;
89 border-bottom: 3px solid #000000;
90}
91
92/*** notification icons ***/
93
94.warning-icon {
95 list-style-image: url("chrome://global/skin/icons/warning-16.png");
96 width: 16px;
97 height: 16px;
ae19a7b3 98 margin: 1px 0;
569543b3
RK
99}
100
101.error-icon {
102 list-style-image: url("chrome://global/skin/icons/error-16.png");
103 width: 16px;
104 height: 16px;
ae19a7b3 105 margin: 1px 0;
569543b3
RK
106}
107
108.pending-icon,
109.info-icon {
110 list-style-image: url("chrome://global/skin/icons/information-16.png");
111 width: 16px;
112 height: 16px;
ae19a7b3 113 margin: 1px 0;
569543b3 114}
4c18c82c
RK
115
116/*** category selector ***/
117
118#categories {
26a52ec5 119 -moz-appearance: none;
4c18c82c 120 border: none;
706c344c
RK
121 -moz-margin-end: -1px;
122 background-color: transparent;
123 position: relative;
e10e7add
RK
124}
125
4c18c82c 126.category {
706c344c
RK
127 border-width: 1px;
128 -moz-border-end-width: 0;
129 border-style: solid;
130 border-color: transparent;
4c18c82c
RK
131 padding: 10px 4px;
132 -moz-box-align: center;
133 overflow: hidden;
134 min-height: 0px;
e10e7add
RK
135}
136
706c344c 137.category:-moz-locale-dir(ltr) {
569543b3
RK
138 border-top-left-radius: 5px;
139 border-bottom-left-radius: 5px;
706c344c
RK
140}
141
142.category:-moz-locale-dir(rtl) {
569543b3
RK
143 border-top-right-radius: 5px;
144 border-bottom-right-radius: 5px;
706c344c
RK
145}
146
4c18c82c
RK
147.category[disabled] {
148 height: 0px;
149 opacity: 0;
150 -moz-transition-property: height, opacity;
151 -moz-transition-duration: 1s, 0.8s;
e10e7add
RK
152}
153
4c18c82c
RK
154.category:not([disabled]) {
155 height: 52px;
156 -moz-transition-property: height, opacity;
157 -moz-transition-duration: 1s, 0.8s;
e10e7add
RK
158}
159
4c18c82c 160.category[selected] {
706c344c
RK
161 color: FFCF00;
162 border-color: #9C9CFF;
1e140ad9
RK
163}
164
4c18c82c
RK
165.category-name {
166 font-size: 150%;
e10e7add
RK
167}
168
4c18c82c
RK
169.category-badge {
170 background-color: #E7ADE7;
171 padding: 2px 8px;
172 margin: 6px 0px;
569543b3 173 border-radius: 10000px;
4c18c82c
RK
174 color: #000000;
175 font-weight: bold;
176 text-align: center;
e10e7add
RK
177}
178
4c18c82c
RK
179.category-badge[value="0"] {
180 visibility: hidden;
e10e7add
RK
181}
182
4c18c82c
RK
183.category-icon {
184 width: 32px;
185 height: 32px;
186 -moz-margin-start: 6px;
e10e7add
RK
187}
188
4c18c82c
RK
189#category-search > .category-icon {
190 list-style-image: url("chrome://mozapps/skin/extensions/category-search.png");
191}
192#category-discover > .category-icon {
193 list-style-image: url("chrome://mozapps/skin/extensions/category-discover.png");
194}
195#category-languages > .category-icon {
196 list-style-image: url("chrome://mozapps/skin/extensions/category-languages.png");
197}
198#category-searchengines > .category-icon {
199 list-style-image: url("chrome://mozapps/skin/extensions/category-searchengines.png");
200}
201#category-extensions > .category-icon {
202 list-style-image: url("chrome://mozapps/skin/extensions/category-extensions.png");
203}
204#category-themes > .category-icon {
205 list-style-image: url("chrome://mozapps/skin/extensions/category-themes.png");
206}
207#category-plugins > .category-icon {
208 list-style-image: url("chrome://mozapps/skin/extensions/category-plugins.png");
e10e7add 209}
0de07750
RK
210#category-availableUpdates > .category-icon {
211 list-style-image: url("chrome://mozapps/skin/extensions/category-available.png");
212}
213#category-recentUpdates > .category-icon {
214 list-style-image: url("chrome://mozapps/skin/extensions/category-recent.png");
215}
e10e7add 216
4c18c82c
RK
217
218/*** header ***/
219
220#header {
706c344c
RK
221 margin-bottom: 20px;
222 height: 2em;
e10e7add
RK
223}
224
4c18c82c 225#header-name, #header-link {
e10e7add
RK
226 color: #000000;
227}
228
4c18c82c
RK
229#header-name {
230 font-size: 180%;
231}
232
233#header-link {
234 -moz-appearance: none;
235 border: none;
236 background: transparent;
237 font-size: 120%;
238 cursor: pointer;
239 list-style-image: url("chrome://mozapps/skin/extensions/go-back.png");
240}
241
242#header-link .button-icon {
243 -moz-margin-end: 6px;
244}
245
3327253e
RK
246#header-searching {
247 list-style-image: url("chrome://global/skin/icons/loading.gif");
248}
249
0de07750
RK
250#header-utils-btn {
251 min-width: 4.5em;
252 list-style-image: url("chrome://mozapps/skin/extensions/utilities.png");
253}
254
ae19a7b3
RK
255#header-utils-btn:hover,
256#header-utils-btn:hover:active,
257#header-utils-btn[open="true"] {
258 list-style-image: url("chrome://mozapps/skin/extensions/utilities-hover.png");
259}
260
0de07750
RK
261#header-utils-btn:-moz-focusring > .button-box {
262 border: none;
263}
264
ae19a7b3
RK
265#header-utils-btn > .button-box > .button-menu-dropmarker {
266 border: none;
267 background: transparent;
268}
269
270#header-utils-btn:hover > .button-box > .button-menu-dropmarker {
271 list-style-image: url("chrome://global/skin/arrow/arrow-down-hover.gif");
272}
273
4c18c82c 274.view-header {
569543b3 275 border-radius: 8px;
ae19a7b3 276 padding: 0px 1em;
4c18c82c 277 margin: 3px;
e10e7add
RK
278}
279
4c18c82c
RK
280
281/*** sorters ***/
282
283.sort-controls {
284 -moz-appearance: none;
ae19a7b3 285 border-right: 3px solid #000000;
4c18c82c
RK
286}
287
288.sorter {
289 -moz-appearance: none;
290 border: none;
291 border-left: 3px solid #000000;
4c18c82c 292 background-color: transparent;
ae19a7b3 293 color: #8050B0;
569543b3 294 border-radius: 0;
4c18c82c 295 padding: 0px 6px;
ae19a7b3
RK
296 -moz-padding-start: 6px;
297 -moz-padding-end: 3px;
298 margin: 0px;
4c18c82c
RK
299 min-width: 12px !important;
300 -moz-box-direction: reverse;
301}
ae19a7b3
RK
302.sorter:hover {
303 background-color: #FFCF00;
304 color: #000000;
305}
4c18c82c
RK
306
307.sorter[checkState="1"],
308.sorter[checkState="2"] {
e10e7add
RK
309 background-color: #008484;
310 color: #FFCF00;
311}
312
4c18c82c
RK
313.sorter[checkState="1"] {
314 list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
e10e7add
RK
315}
316
4c18c82c
RK
317.sorter[checkState="2"] {
318 list-style-image: url("chrome://global/skin/arrow/arrow-up.gif");
e10e7add
RK
319}
320
4c18c82c
RK
321.sorter .button-icon {
322 -moz-margin-start: 4px;
e10e7add
RK
323}
324
4c18c82c
RK
325
326/*** empty list notification ***/
327
328.empty-list-notice {
329 -moz-box-align: center;
e10e7add
RK
330}
331
4c18c82c
RK
332.empty-list-notice > button {
333 margin: 20px;
334}
335
336
337/*** list ***/
338
339.list {
4c18c82c
RK
340 margin: 0px;
341 border: none;
706c344c 342 background-color: transparent;
4c18c82c
RK
343}
344
706c344c
RK
345.addon {
346 border-bottom: 1px solid #9C9CFF;
347 padding: 5px;
e10e7add
RK
348}
349
4c18c82c
RK
350.addon[status="installing"] {
351 -moz-box-align: center;
e10e7add
RK
352}
353
706c344c 354.details {
4c18c82c 355 cursor: pointer;
706c344c
RK
356 margin: 0;
357 -moz-margin-start: 10px;
e10e7add
RK
358}
359
706c344c
RK
360.icon-container {
361 width: 48px;
362 height: 48px;
363 margin: 7px;
e10e7add
RK
364}
365
706c344c 366.icon {
d15f39a1 367 list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png");
706c344c
RK
368 max-width: 48px;
369 max-height: 48px;
e10e7add
RK
370}
371
569543b3 372.addon-view[type="theme"] .icon {
4c18c82c 373 list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric.png");
e10e7add
RK
374}
375
569543b3 376.addon-view[type="locale"] .icon {
d15f39a1
RK
377 list-style-image: url("chrome://mozapps/skin/extensions/localeGeneric.png");
378}
379
569543b3 380.addon-view[type="plugin"] .icon {
4c18c82c 381 list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric.png");
e10e7add
RK
382}
383
569543b3 384.name-container {
4c18c82c
RK
385 font-size: 150%;
386 margin-bottom: 0px;
387}
388
706c344c 389.description-container {
4c18c82c 390 margin-top: 8px;
e10e7add 391 -moz-margin-start: 6px;
e10e7add
RK
392}
393
706c344c
RK
394.description {
395 margin: 0;
396}
397
398.warning, .pending, .error, .info {
399 -moz-margin-start: 48px;
400}
401
569543b3 402.addon-view:not([selected]) .warning {
706c344c
RK
403 color: #FFCF00;
404}
405
569543b3 406.addon-view:not([selected]) .error {
4c18c82c 407 color: #FF0000;
706c344c
RK
408}
409
569543b3 410.addon-view:not([selected]) .pending {
706c344c 411 color: #008484;
e10e7add
RK
412}
413
569543b3 414.addon-view[notification="warning"] {
706c344c
RK
415 background-color : #FFCF00;
416 color: #000000;
417}
418
ae19a7b3
RK
419.addon-view[notification="warning"] .warning {
420 color: #000000;
421}
422
569543b3 423.addon-view[notification="error"] {
706c344c
RK
424 background-color: #FF0000;
425 color: #000000;
426}
427
ae19a7b3
RK
428.addon-view[notification="error"] .error {
429 color: #000000;
430}
431
569543b3 432.addon-view[notification="info"] {
706c344c
RK
433 background-color: #9C9CFF;
434 color: #000000;
435}
436
569543b3
RK
437.addon-view[pending="enable"],
438.addon-view[pending="upgrade"],
439.addon-view[pending="install"] {
706c344c 440 background-color: #008484;
e10e7add
RK
441}
442
ae19a7b3
RK
443.addon-view[pending="enable"] .pending,
444.addon-view[pending="upgrade"] .pending,
445.addon-view[pending="install"] .pending {
446 color: #000000;
447}
448
569543b3
RK
449.addon-view[pending="disable"],
450.addon-view[pending="uninstall"] {
706c344c 451 color: #8050B0;
e10e7add
RK
452}
453
0de07750
RK
454.addon .relnotes-container {
455 -moz-box-align: start;
456 height: 0px;
457 overflow: hidden;
458 opacity: 0;
459 -moz-transition-property: height, opacity;
460 -moz-transition-duration: 0.5s, 0.5s;
461}
462
463.addon[show-relnotes] .relnotes-container {
464 opacity: 1;
465 -moz-transition-property: height, opacity;
466 -moz-transition-duration: 0.5s, 0.5s;
467}
468
469.addon .relnotes-header {
470 font-weight: bold;
471 margin: 10px 0px;
472}
473
474.addon .relnotes-toggle {
475 border: none;
476 background: transparent;
477 font-weight: bold;
478 -moz-box-direction: reverse;
479 cursor: pointer;
480 list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
481}
482
483.addon .relnotes-toggle > .button-box > .button-icon {
484 -moz-padding-start: 4px;
485}
486
487.addon[show-relnotes] .relnotes-toggle {
488 list-style-image: url("chrome://global/skin/arrow/arrow-up.gif");
489}
490
491
4c18c82c
RK
492/*** item - uninstalled ***/
493
494.addon[status="uninstalled"] {
495 border: none;
e10e7add
RK
496}
497
4c18c82c
RK
498.addon[status="uninstalled"] > .container {
499 -moz-box-align: center;
500 padding: 4px 20px;
501 background-color: #8050B0;
569543b3 502 border-radius: 8px;
4c18c82c 503 font-size: 120%;
e10e7add
RK
504}
505
4c18c82c
RK
506.addon[status="uninstalled"][selected] {
507 background-color: transparent;
e10e7add
RK
508}
509
4c18c82c 510
4c18c82c
RK
511/*** search view ***/
512
706c344c
RK
513#search-filter {
514 padding: 5px 20px;
4c18c82c
RK
515 -moz-box-align: center;
516 background-color: #000000;
517 font-size: 120%;
e10e7add
RK
518}
519
706c344c
RK
520#search-filter-label {
521 font-weight: bold;
522 color: #FFCF00;
523}
524
525.search-filter-radio {
526 padding: 0px 6px;
527 margin: 0px 3px;
569543b3 528 border-radius: 10000px;
706c344c
RK
529}
530
531.search-filter-radio[selected] {
532 background-color: #008484;
533 color: #000000;
534}
535
536.search-filter-radio .radio-check-box1 {
537 display: none;
538}
539
540.search-filter-radio .radio-icon {
541 display: none;
542}
4c18c82c 543
0de07750
RK
544#search-allresults-link {
545 margin-top: 1em;
546 margin-bottom: 2em;
547}
548
4c18c82c
RK
549/*** detail view ***/
550
551#detail-view[active="false"] .fade {
552 opacity: 0.5;
e10e7add
RK
553}
554
569543b3 555#detail-view .loading {
4c18c82c 556 opacity: 0;
e10e7add
RK
557}
558
569543b3 559#detail-view:not([loading]) .loading {
4c18c82c 560 visibility: collapse;
e10e7add
RK
561}
562
569543b3 563#detail-view[loading-extended] .loading {
4c18c82c
RK
564 -moz-box-align: center;
565 -moz-box-pack: center;
566 opacity: 1;
567 -moz-transition-property: opacity;
568 -moz-transition-duration: 1s;
e10e7add
RK
569}
570
569543b3 571#detail-view .loading > image {
4c18c82c 572 list-style-image: url("chrome://global/skin/icons/loading.gif");
e10e7add
RK
573}
574
4c18c82c
RK
575.detail-view-container {
576 overflow: auto;
569543b3
RK
577 padding: 2em;
578 font-size: 110%;
e10e7add
RK
579}
580
569543b3
RK
581#detail-notifications {
582 margin-bottom: 2em;
e10e7add
RK
583}
584
569543b3
RK
585#detail-notifications .warning,
586#detail-notifications .pending,
587#detail-notifications .error,
588#detail-notifications .info {
589 -moz-margin-start: 0;
e10e7add
RK
590}
591
4c18c82c 592#detail-icon {
4c18c82c 593 -moz-margin-end: 10px;
e10e7add
RK
594}
595
569543b3
RK
596#detail-summary {
597 margin-bottom: 2em;
e10e7add
RK
598}
599
569543b3
RK
600#detail-name-container {
601 font-size: 200%;
d15f39a1
RK
602}
603
569543b3
RK
604#detail-screenshot {
605 -moz-margin-end: 2em;
18f5421a
RK
606}
607
569543b3
RK
608#detail-desc-container {
609 margin-bottom: 2em;
610 /* This is necessary to fix layout issues with multi-line descriptions, see
611 bug 592712*/
612 outline: solid transparent;
e10e7add
RK
613}
614
569543b3
RK
615#detail-desc {
616 -moz-margin-start: 6px;
617 white-space: pre-wrap;
618}
619
620#detail-contributions {
621 border-radius: 5px;
622 border: 1px solid #9C9CFF;
623 margin-bottom: 2em;
624 padding: 1em;
625 background: #FFCF00;
4c18c82c
RK
626}
627
569543b3
RK
628#detail-contrib-description {
629 font-style: italic;
630 margin-bottom: 1em;
4c18c82c
RK
631}
632
569543b3
RK
633#detail-contrib-suggested {
634 color: grey;
4c18c82c
RK
635}
636
569543b3
RK
637#detail-contrib-button {
638 list-style-image: url("chrome://mozapps/skin/extensions/heart.png");
639}
640
641#detail-contrib-button .button-icon {
642 -moz-margin-end: 3px;
643}
644
645#detail-grid {
646 margin-bottom: 2em;
647}
648
649.detail-row,
650.detail-row-complex {
651 border-bottom: 1px solid #9C9CFF;
4c18c82c 652 -moz-box-align: center;
569543b3
RK
653}
654
655.detail-row-value {
656 -moz-margin-start: 0;
e10e7add
RK
657}
658
4c18c82c
RK
659
660/*** creator ***/
661
662.creator > label {
663 -moz-margin-start: 0px;
664 -moz-margin-end: 0px;
e10e7add
RK
665}
666
4c18c82c
RK
667.creator > .text-link {
668 margin-top: 1px;
669 margin-bottom: 1px;
e10e7add
RK
670}
671
4c18c82c
RK
672
673/*** rating ***/
674
675.meta-rating {
676 -moz-margin-start: 0px;
677 -moz-margin-end: 0px;
678 vertical-align: text-top;
e10e7add
RK
679}
680
4c18c82c
RK
681.meta-rating[showrating="average"] > .star {
682 list-style-image: url("chrome://mozapps/skin/extensions/rating-not-won.png");
683 padding: 0px 1px;
e10e7add
RK
684}
685
4c18c82c
RK
686.meta-rating[showrating="user"] > .star {
687 list-style-image: url("chrome://mozapps/skin/extensions/rating-unrated.png");
688 padding: 2px 3px;
e10e7add
RK
689}
690
4c18c82c
RK
691.meta-rating > .star[on="true"],
692.meta-rating[showrating="user"] > .star[hover] {
693 list-style-image: url("chrome://mozapps/skin/extensions/rating-won.png");
694 padding: 0px 1px;
e10e7add
RK
695}
696
4c18c82c
RK
697
698/*** download progress ***/
699
700.download-progress {
701 background-color: #000000;
569543b3 702 border-radius: 10000px;
4c18c82c
RK
703 border: 1px solid #FF9F00;
704 width: 200px;
705 height: 24px;
706 margin: 0px 8px;
e10e7add
RK
707}
708
4c18c82c
RK
709.download-progress .start-cap,
710.download-progress[complete] .end-cap,
711.download-progress .progress .progress-bar {
712 background-color: #008484;
e10e7add
RK
713}
714
4c18c82c
RK
715.download-progress .progress {
716 background-color: transparent;
e10e7add
RK
717}
718
4c18c82c
RK
719.download-progress .start-cap, .download-progress .end-cap {
720 width: 12px;
e10e7add
RK
721}
722
941d657f
RK
723.download-progress .start-cap:-moz-locale-dir(ltr),
724.download-progress .end-cap:-moz-locale-dir(rtl) {
569543b3 725 border-radius: 10000px 0 0 10000px;
e10e7add
RK
726}
727
941d657f
RK
728.download-progress .end-cap:-moz-locale-dir(ltr),
729.download-progress .start-cap:-moz-locale-dir(rtl) {
569543b3 730 border-radius: 0 10000px 10000px 0;
e10e7add
RK
731}
732
4c18c82c
RK
733.download-progress .progress {
734 -moz-appearance: none;
735 padding: 0px;
736 margin: 0px;
737 border: none;
e10e7add
RK
738}
739
4c18c82c
RK
740.download-progress .pause, .download-progress .cancel {
741 -moz-appearance: none;
742 background-color: #8050B0;
743 border-width: 1px 0px 0px 1px;
941d657f 744 padding-right: 1px;
4c18c82c 745 border-style: solid;
569543b3 746 border-radius: 10000px;
4c18c82c
RK
747 min-width: 16px;
748 width: 16px;
749 height: 16px;
750 margin: 3px;
e10e7add
RK
751}
752
d15f39a1
RK
753.download-progress .pause {
754 list-style-image: url('chrome://mozapps/skin/extensions/pause.png');
755}
756
757.download-progress .cancel {
758 list-style-image: url('chrome://mozapps/skin/extensions/cancel.png');
759}
760
4c18c82c
RK
761.download-progress .status-container {
762 -moz-box-align: center;
763}
764
765
766/*** install status ***/
767
768.install-status {
769 -moz-box-align: center;
e10e7add
RK
770}
771
4c18c82c
RK
772
773/*** check for updates ***/
774
775#updates-container {
776 -moz-box-align: center;
e10e7add
RK
777}
778
4c18c82c
RK
779#updates-installed, #updates-downloaded {
780 color: #008484;
781 font-weight: bold;
e10e7add
RK
782}
783
569543b3
RK
784#update-selected {
785 margin: 12px;
e10e7add
RK
786}
787
569543b3 788/*** buttons ***/
4c18c82c 789
0de07750
RK
790.addon-control[disabled="true"] {
791 display: none;
792}
793
4c18c82c
RK
794.button-link {
795 background: transparent;
796 border: none;
797 text-decoration: underline;
798 color: blue;
799 cursor: pointer;
800 min-width: 0;
706c344c 801 margin: 0 6px;
e10e7add 802}