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