second part of syncing LCARStrek with Firefox 39 windows theme changes
[themes.git] / LCARStrek / global / in-content / common.css
CommitLineData
9168a62c
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/. */
4
5/* === BEGIN common.inc.css === */
6
7@namespace html "http://www.w3.org/1999/xhtml";
8@namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
1988bb88 9
9168a62c 10html|body,
e6947267
RK
11xul|page,
12xul|window {
1988bb88 13 font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
9168a62c 14 -moz-appearance: none;
1988bb88
RK
15 background-color: #000000;
16 color: #FF9F00;
9168a62c
RK
17}
18
19html|body {
20 font-size: 15px;
21 font-weight: normal;
22 margin: 0;
23}
24
25html|h1 {
26 font-size: 2.5em;
27 font-weight: lighter;
28 line-height: 1.2;
e6947267 29 color: #9C9CFF;
9168a62c
RK
30 margin: 0;
31 margin-bottom: .5em;
32}
33
e6947267
RK
34html|hr {
35 border-style: solid none none none;
36 border-color: #9C9CFF;
37}
38
9168a62c 39xul|caption {
9168a62c
RK
40}
41
e6947267 42xul|caption > xul|checkbox,
9168a62c 43xul|caption > xul|label {
1988bb88
RK
44 margin-top: 0;
45 margin-bottom: 0;
9168a62c
RK
46}
47
21c0144b
RK
48xul|description {
49 -moz-margin-start: 0;
50}
51
9168a62c 52*|*.main-content {
21c0144b
RK
53 padding-top: 40px;
54 -moz-padding-end: 48px; /* orig is 44px to compensate the 4px margin of child elements */
55 padding-bottom: 48px;
56 -moz-padding-start: 48px;
9168a62c
RK
57 overflow: auto;
58}
59
60xul|prefpane > xul|*.content-box {
61 overflow: visible;
62}
1988bb88 63
9168a62c
RK
64/* groupboxes */
65/*
66xul|groupbox {
67 -moz-appearance: none;
68 border: none;
e6947267 69 margin: 15px 0 0;
9168a62c
RK
70 -moz-padding-start: 0;
71 -moz-padding-end: 0;
72 font-size: 1.25rem;
73}
74
75xul|groupbox xul|label {
76 / !important needed to override toolkit !important rule /
77 -moz-margin-start: 0 !important;
78 -moz-margin-end: 0 !important;
79}
80*/
81/* tabpanels and tabs */
82/*
83xul|tabpanels {
84 -moz-appearance: none;
85 font-size: 1.25rem;
86 line-height: 22px;
87 border: none;
88 padding: 0;
89 background-color: transparent;
441d0294 90 color: inherit;
9168a62c
RK
91}
92
93xul|tabs {
94 margin-bottom: 15px;
95 border-top: 1px solid #c1c1c1;
96 border-bottom: 1px solid #c1c1c1;
97 background-color: #fbfbfb;
98}
99
100xul|*.tabs-left,
101xul|*.tabs-right {
102 border-bottom: none;
103}
104
105xul|tab {
106 -moz-appearance: none;
107 margin-top: 0;
441d0294 108 padding: 4px 20px;
9168a62c
RK
109 min-height: 44px;
110 color: #424f5a;
111 background-color: #fbfbfb;
112 border-width: 0;
113 transition: background-color 50ms ease 0s;
114}
115
116xul|tab:hover {
117 background-color: #ebebeb;
118}
119
da3c2755 120xul|tab[visuallyselected] {
9168a62c 121 background-color: #ebebeb;
441d0294
RK
122 padding-bottom: 0; / compensate the 4px border /
123 border-bottom: 4px solid #ff9500;
9168a62c
RK
124}
125
126xul|*.tab-text {
127 font-size: 1.3rem;
128 line-height: 22px;
129}
130*/
131/* html buttons */
1988bb88 132
9168a62c 133html|button {
1988bb88
RK
134 border-radius: 300px;
135 border: none;
136 background-color: #C09070;
137 color: #000000;
9e756f9d 138 /* override forms.css */
9168a62c
RK
139 font: inherit;
140}
1988bb88 141
9168a62c
RK
142/* xul buttons and menulists */
143/*
144*|button,
145xul|colorpicker[type="button"],
146xul|menulist {
147 -moz-appearance: none;
148 height: 30px;
149 color: #333;
150 line-height: 20px;
9168a62c
RK
151 border: 1px solid #c1c1c1;
152 -moz-border-top-colors: none !important;
153 -moz-border-right-colors: none !important;
154 -moz-border-bottom-colors: none !important;
155 -moz-border-left-colors: none !important;
156 border-radius: 2px;
157 background-color: #fbfbfb;
158}
1988bb88 159*/
9168a62c
RK
160html|button:enabled:hover,
161xul|button:not([disabled="true"]):hover,
162xul|colorpicker[type="button"]:not([disabled="true"]):hover,
163xul|menulist:not([disabled="true"]):hover {
1988bb88
RK
164 background-color: #FFCF00;
165 color: #000000;
9168a62c
RK
166}
167
168html|button:enabled:hover:active,
169xul|button:not([disabled="true"]):hover:active,
170xul|colorpicker[type="button"]:not([disabled="true"]):hover:active,
171xul|menulist[open="true"]:not([disabled="true"]) {
1988bb88
RK
172 background-color: #FF9F00;
173 color: #000000;
9168a62c
RK
174}
175
176html|button:disabled,
177xul|button[disabled="true"],
178xul|colorpicker[type="button"][disabled="true"],
179xul|menulist[disabled="true"] {
180 cursor: not-allowed;
1988bb88
RK
181 background-color: #402858;
182 color: #000000;
9168a62c 183}
21c0144b
RK
184
185*|button.primary {
186 background-color: #A06060;
187}
188
189html|button.primary:enabled:hover,
190xul|button.primary:not([disabled="true"]):hover {
191 background-color: #FFCF00;
192}
193
194html|button.primary:enabled:hover:active,
195xul|button.primary:not([disabled="true"]):hover:active {
196 background-color: #FF9F00;
197}
1988bb88 198/*
9168a62c
RK
199xul|colorpicker[type="button"] {
200 padding: 6px;
201 width: 50px;
202}
203
204xul|button > xul|*.button-box,
205xul|menulist > xul|*.menulist-label-box {
206 padding-right: 10px !important;
207 padding-left: 10px !important;
208}
209
e6947267 210xul|menulist > xul|*.menulist-label-box > xul|*.menulist-icon[src] {
58036cb8
RK
211 -moz-margin-end: 5px;
212}
213
9168a62c
RK
214xul|button[type="menu"] > xul|*.button-box > xul|*.button-menu-dropmarker {
215 -moz-appearance: none;
216 margin: 1px 0;
217 -moz-margin-start: 10px;
218 padding: 0;
219 width: 10px;
220 height: 16px;
221 border: none;
222 background-color: transparent;
441d0294 223 list-style-image: url("chrome://global/skin/in-content/dropdown.svg#dropdown");
9168a62c
RK
224}
225
441d0294 226*/
9168a62c 227xul|*.help-button {
441d0294 228/*
9168a62c
RK
229 min-width: 30px;
230 border-radius: 2px;
21c0144b 231 border-width: 0;
9168a62c
RK
232 background-color: #ffcb00;
233 background-image: none;
234 box-shadow: none;
441d0294
RK
235*/
236 list-style-image: url("chrome://global/skin/in-content/help-glyph.svg");
9168a62c 237}
441d0294 238/*
9168a62c
RK
239xul|*.help-button:not([disabled="true"]):hover {
240 background-color: #f4c200;
241 background-image: none;
242}
243
244xul|*.help-button:not([disabled="true"]):hover:active {
245 background-color: #eaba00;
246 background-image: none;
247}
248
249xul|*.close-icon > xul|*.button-box,
250xul|*.help-button > xul|*.button-box {
251 padding-top: 0;
252 padding-bottom: 0;
253 padding-right: 0 !important;
254 padding-left: 0 !important;
255}
a21f2959 256*/
9168a62c 257xul|*.help-button > xul|*.button-box > xul|*.button-icon {
441d0294
RK
258 width: 18px;
259 height: 18px;
9168a62c
RK
260}
261
262xul|*.help-button > xul|*.button-box > xul|*.button-text {
263 display: none;
264}
a21f2959 265/*
9168a62c
RK
266xul|*.spinbuttons-button {
267 -moz-margin-start: 10px !important;
268 -moz-margin-end: 2px !important;
269}
270
271xul|*.spinbuttons-up {
272 margin-top: 2px !important;
273 border-radius: 1px 1px 0 0;
274}
275
276xul|*.spinbuttons-down {
277 margin-bottom: 2px !important;
278 border-radius: 0 0 1px 1px;
279}
280
281xul|*.spinbuttons-button > xul|*.button-box {
282 padding: 1px 5px 2px !important;
283}
284
285xul|*.spinbuttons-up > xul|*.button-box > xul|*.button-icon {
286 list-style-image: url("chrome://global/skin/arrow/arrow-up.gif");
287}
288
289xul|*.spinbuttons-up[disabled="true"] > xul|*.button-box > xul|*.button-icon {
290 list-style-image: url("chrome://global/skin/arrow/arrow-up-dis.gif");
291}
292
293xul|*.spinbuttons-down > xul|*.button-box > xul|*.button-icon {
294 list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif");
295}
296
297xul|*.spinbuttons-down[disabled="true"] > xul|*.button-box > xul|*.button-icon {
298 list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif");
299}
300
301xul|menulist:not([editable="true"]) > xul|*.menulist-dropmarker {
302 -moz-appearance: none;
441d0294 303 -moz-margin-end: 4px;
9168a62c
RK
304 padding: 0;
305 border: none;
306 background-color: transparent;
441d0294 307 list-style-image: url("chrome://global/skin/in-content/dropdown.svg#dropdown");
9168a62c
RK
308}
309
441d0294
RK
310xul|menulist:not([editable="true"]) > xul|*.menulist-dropmarker > xul|*.dropmarker-icon {
311 width: 18px;
312 height: 18px;
9168a62c
RK
313}
314
441d0294
RK
315xul|menulist[disabled="true"]:not([editable="true"]) > xul|*.menulist-dropmarker {
316 list-style-image: url("chrome://global/skin/in-content/dropdown.svg#dropdown-disabled")
9168a62c
RK
317}
318
319xul|menulist > xul|menupopup,
320xul|button[type="menu"] > xul|menupopup {
321 -moz-appearance: none;
21c0144b 322 border: 1px solid #c1c1c1;
9168a62c
RK
323 border-radius: 2px;
324 background-color: #fff;
325}
326
327xul|menulist > xul|menupopup xul|menu,
328xul|menulist > xul|menupopup xul|menuitem,
329xul|button[type="menu"] > xul|menupopup xul|menu,
330xul|button[type="menu"] > xul|menupopup xul|menuitem {
331 -moz-appearance: none;
441d0294 332 font-size: 1rem;
9168a62c 333 color: #333;
441d0294
RK
334 padding-top: 0.2em;
335 padding-bottom: 0.2em;
9168a62c
RK
336 -moz-padding-start: 10px;
337 -moz-padding-end: 30px;
338}
339
340xul|menulist > xul|menupopup > xul|menu[_moz-menuactive="true"],
341xul|menulist > xul|menupopup > xul|menuitem[_moz-menuactive="true"],
342xul|button[type="menu"] > xul|menupopup > xul|menu[_moz-menuactive="true"],
343xul|button[type="menu"] > xul|menupopup > xul|menuitem[_moz-menuactive="true"] {
344 color: #333;
441d0294 345 background-color: rgba(0,149,221,0.25);
9168a62c
RK
346}
347
348xul|menulist > xul|menupopup > xul|menu[selected="true"],
349xul|menulist > xul|menupopup > xul|menuitem[selected="true"],
350xul|button[type="menu"] > xul|menupopup > xul|menu[selected="true"],
351xul|button[type="menu"] > xul|menupopup > xul|menuitem[selected="true"] {
352 color: #fff;
441d0294 353 background-color: #0095DD;
9168a62c
RK
354}
355
356xul|menulist > xul|menupopup xul|menuseparator,
357xul|button[type="menu"] > xul|menupopup xul|menuseparator {
358 -moz-appearance: none;
21c0144b 359 margin: 0;
9168a62c 360 padding: 0;
21c0144b 361 border-top: 1px solid #c1c1c1;
9168a62c
RK
362 border-bottom: none;
363}
364*/
365/* textboxes */
366/*
367*|textbox {
368 -moz-appearance: none;
369 height: 30px;
370 color: #333;
371 line-height: 20px;
9168a62c
RK
372 padding-right: 10px;
373 padding-left: 10px;
374 border: 1px solid #c1c1c1;
375 -moz-border-top-colors: none !important;
376 -moz-border-right-colors: none !important;
377 -moz-border-bottom-colors: none !important;
378 -moz-border-left-colors: none !important;
379 border-radius: 2px;
380 background-color: #fff;
381}
382
383html|textbox:focus,
384xul|textbox[focused] {
385 border-color: #0095dd;
386}
387
388html|textbox:disabled,
389xul|textbox[disabled="true"] {
390 opacity: 0.5;
391}
392*/
393/* Links */
cac2a998 394
9168a62c 395html|a,
e6947267
RK
396.text-link,
397.inline-link {
21c0144b 398/* line-height: 22px;*/
cac2a998 399 color: #3333FF;
9168a62c
RK
400 text-decoration: none;
401}
402
403html|a:hover,
e6947267
RK
404.text-link:hover,
405.inline-link:hover {
cac2a998
RK
406 color: #FFCF00;
407 text-decoration: underline;
9168a62c
RK
408}
409
410html|a:hover:active,
e6947267
RK
411.text-link:hover:active,
412.inline-link:hover:active {
cac2a998
RK
413 color: #FF9F00;
414 text-decoration: underline;
9168a62c 415}
cac2a998 416
9168a62c
RK
417/* Checkboxes and radio buttons */
418/*
e6947267
RK
419/ Hide the actual checkbox /
420html|input[type="checkbox"] {
421 opacity: 0;
422 position: absolute;
423}
424
425/ Create a box to style as the checkbox /
426html|input[type="checkbox"] + html|label:before {
427 display: inline-block;
428 content: "";
429 vertical-align: middle;
430}
431
432html|input[type="checkbox"] + html|label {
433 line-height: 0px;
434}
435
9168a62c
RK
436xul|checkbox {
437 -moz-margin-start: 0;
438}
439
e6947267
RK
440xul|*.checkbox-check,
441html|input[type="checkbox"] + html|label:before {
9168a62c
RK
442 -moz-appearance: none;
443 width: 23px;
444 height: 23px;
445 border-radius: 2px;
446 border: 1px solid #c1c1c1;
447 -moz-margin-end: 10px;
448 background-color: #f1f1f1;
21c0144b
RK
449 / !important needed to override toolkit checked !important rule /
450 background-image: linear-gradient(#fff, rgba(255,255,255,0.8)) !important;
9168a62c
RK
451 background-position: center center;
452 background-repeat: no-repeat;
453 box-shadow: 0 1px 1px 0 #fff, inset 0 2px 0 0 rgba(0,0,0,0.03);
454}
455
e6947267
RK
456xul|checkbox:not([disabled="true"]):hover > xul|*.checkbox-check,
457html|input[type="checkbox"]:not(:disabled) + html|label:hover:before {
9168a62c
RK
458 border-color: #0095dd;
459}
460
461xul|*.checkbox-check[checked] {
462 background-image: url("chrome://global/skin/in-content/check.png"),
463 / * !important needed to override toolkit !important rule * /
464 linear-gradient(#fff, rgba(255,255,255,0.8)) !important;
465}
466
e6947267
RK
467html|input[type="checkbox"]:checked + html|label:before {
468 background-image: url("chrome://global/skin/in-content/check.svg#check"), linear-gradient(#fff, rgba(255,255,255,0.8)) !important;
469}
470
471xul|checkbox[disabled="true"] > xul|*.checkbox-check,
472html|input[type="checkbox"]:disabled + html|label {
9168a62c
RK
473 opacity: 0.5;
474}
475
476xul|*.checkbox-label-box {
477 -moz-margin-start: -1px; / * negative margin for the transparent border * /
478 -moz-padding-start: 0;
479}
480
58036cb8
RK
481xul|richlistitem > xul|*.checkbox-check {
482 margin: 3px 6px;
483}
484
da3c2755
RK
485xul|radio {
486 -moz-margin-start: 0;
487}
488
9168a62c
RK
489xul|*.radio-check {
490 -moz-appearance: none;
491 width: 23px;
492 height: 23px;
493 border: 1px solid #c1c1c1;
494 border-radius: 50%;
495 -moz-margin-end: 10px;
496 background-color: #f1f1f1;
497 background-image: linear-gradient(#fff, rgba(255,255,255,0.80));
498 box-shadow: 0 1px 1px 0 #fff, inset 0 2px 0 0 rgba(0,0,0,0.03);
499}
500
501xul|radio:not([disabled="true"]):hover > xul|*.radio-check {
502 border-color: #0095dd;
503}
504
505xul|*.radio-check[selected] {
21c0144b 506 list-style-image: url("chrome://global/skin/in-content/radio.svg#radio");
9168a62c
RK
507}
508
509xul|radio[disabled="true"] > xul|*.radio-check {
510 opacity: 0.5;
511}
512
513xul|*.radio-label-box {
514 -moz-margin-start: -1px; / * negative margin for the transparent border * /
515 -moz-margin-end: 10px;
516 -moz-padding-start: 0;
517}
518*/
519/* Category List */
520/*
521xul|*#categories {
522 -moz-appearance: none;
523 background-color: #424f5a;
524 padding-top: 39px;
525 margin: 0;
21c0144b 526 border-width: 0;
9168a62c
RK
527}
528
529xul|*.category {
530 -moz-appearance: none;
531 color: #c1c1c1;
532 -moz-border-end-width: 0;
533 -moz-padding-start: 15px;
534 -moz-padding-end: 21px;
535 min-height: 40px;
536 transition: background-color 150ms;
537}
538
539xul|*.category:hover {
540 background-color: #5e6972;
541}
542
543xul|*.category[selected] {
544 background-color: #343f48;
545 color: #f2f2f2;
441d0294
RK
546 -moz-padding-start: 11px; / compensate the 4px border /
547 -moz-border-start: solid 4px #ff9500;
9168a62c
RK
548}
549
550xul|*#categories[keyboard-navigation="true"]:-moz-focusring > xul|*.category[current] {
551 border-top: 1px #ffffff dotted;
552 border-bottom: 1px #ffffff dotted;
553}
e6947267 554*/
9168a62c 555*|*.category-name {
e6947267 556/*
9168a62c
RK
557 line-height: 22px;
558 font-size: 1.25rem;
559 padding-bottom: 2px;
560 -moz-padding-start: 9px;
561 margin: 0;
e6947267
RK
562*/
563 -moz-user-select: none;
9168a62c 564}
e6947267 565/*
9168a62c
RK
566*|*.category-icon {
567 width: 24px;
568 height: 24px;
569}
570*/
571/* header */
a21f2959 572
9168a62c 573*|*.header {
21c0144b
RK
574/* -moz-margin-end: 4px; / add the 4px end-margin of other elements /
575 border-bottom: 1px solid #A09090;
9168a62c 576 margin-bottom: 15px;
a21f2959 577 padding-bottom: 15px; */
9168a62c
RK
578}
579
580*|*.header-name {
581 font-size: 2.5rem;
582 font-weight: normal;
583 line-height: 40px;
584 margin: 0;
e6947267 585 -moz-user-select: none;
9168a62c 586}
a21f2959 587
9168a62c
RK
588/* File fields */
589/*
590xul|filefield {
591 -moz-appearance: none;
592 background-color: transparent;
593 border: none;
594 padding: 0;
595}
596
597xul|*.fileFieldContentBox {
598 background-color: transparent;
599}
600
601xul|*.fileFieldIcon {
602 -moz-margin-start: 10px;
603 -moz-margin-end: 0;
604}
605
606xul|*.fileFieldLabel {
607 -moz-margin-start: -26px;
608 -moz-padding-start: 36px;
609}
610
611xul|textbox:-moz-locale-dir(rtl),
612xul|*.fileFieldLabel:-moz-locale-dir(rtl),
613xul|textbox + xul|button:-moz-locale-dir(ltr),
614xul|filefield + xul|button:-moz-locale-dir(ltr) {
615 border-top-left-radius: 0;
616 border-bottom-left-radius: 0;
617}
618
619xul|textbox:-moz-locale-dir(ltr),
620xul|*.fileFieldLabel:-moz-locale-dir(ltr),
621xul|textbox + xul|button:-moz-locale-dir(rtl),
622xul|filefield + xul|button:-moz-locale-dir(rtl) {
623 border-top-right-radius: 0;
624 border-bottom-right-radius: 0;
625}
626
627xul|textbox + xul|button,
628xul|filefield + xul|button {
629 -moz-border-start: none;
630}
631*/
21c0144b
RK
632/* List boxes */
633/*
634xul|richlistbox,
635xul|listbox {
636 -moz-appearance: none;
637 -moz-margin-start: 0;
638 background-color: #fff;
639 border: 1px solid #c1c1c1;
640 color: #333;
641}
642
643xul|treechildren::-moz-tree-row,
644xul|listbox xul|listitem {
645 padding: 0.3em;
646 margin: 0;
647 border: none;
648 border-radius: 0;
649 background-image: none;
650}
651
652xul|treechildren::-moz-tree-row(hover),
653xul|listbox xul|listitem:hover {
654 background-color: rgba(0,149,221,0.25);
655}
656
657xul|treechildren::-moz-tree-row(selected),
658xul|listbox xul|listitem[selected="true"] {
659 background-color: #0095dd;
660 color: #fff;
661}
662
663/ This is the only way to increase the height of a tree row unfortunately /
664xul|treechildren::-moz-tree-row {
665 min-height: 2em;
666}
667
668/ Color needs to be set on tree cell in order to be applied /
669xul|treechildren::-moz-tree-cell-text {
670 color: #333;
671}
672
673xul|treechildren::-moz-tree-cell-text(selected) {
674 color: #fff;
675}
676*/
677/* Trees */
678/*
679xul|tree {
680 -moz-appearance: none;
681 font-size: 1em;
682 border: 1px solid #c1c1c1;
683}
684
e6947267
RK
685xul|tree:-moz-focusring,
686xul|richlistbox:-moz-focusring {
687 border: 1px dotted #0095dd;
688}
689
21c0144b
RK
690xul|listheader,
691xul|treecols {
692 -moz-appearance: none;
693 border: none;
694 border-bottom: 1px solid #c1c1c1;
695 padding: 0;
696}
697
698xul|treecol:not([hideheader="true"]),
699xul|treecolpicker {
700 -moz-appearance: none;
701 border: none;
702 background-color: #ebebeb;
703 color: #808080;
704 padding: 5px 10px;
705}
706
e6947267 707xul|treecol:not([hideheader="true"]):not([sortable="false"]):hover,
21c0144b
RK
708xul|treecolpicker:hover {
709 background-color: #dadada;
710 color: #333;
711}
712
713xul|treecol:not([hideheader="true"]):not(:first-child),
714xul|treecolpicker {
715 -moz-border-start-width: 1px;
716 -moz-border-start-style: solid;
717 border-image: linear-gradient(transparent 0%, transparent 20%, #c1c1c1 20%, #c1c1c1 80%, transparent 80%, transparent 100%) 1 1;
718}
719
720xul|treecol:not([hideheader="true"]) > xul|*.treecol-sortdirection[sortDirection] {
e6947267
RK
721 list-style-image: url("chrome://global/skin/in-content/dropdown.svg#dropdown");
722 width: 18px;
723 height: 18px;
21c0144b
RK
724}
725
e6947267 726xul|treecol:not([hideheader="true"]) > xul|*.treecol-sortdirection[sortDirection="ascending"] {
21c0144b
RK
727 transform: scaleY(-1);
728}
21c0144b 729*/
9168a62c
RK
730/* === END common.inc.css === */
731/*
732xul|caption {
733 background-color: transparent;
734}
735
736xul|button,
e6947267 737html|button,
9168a62c
RK
738xul|colorpicker[type="button"],
739xul|menulist {
740 margin: 2px 4px;
741}
742
743xul|menulist:not([editable="true"]) > xul|*.menulist-dropmarker {
744 margin-top: 1px;
745 margin-bottom: 1px;
746}
747
748xul|checkbox {
749 -moz-padding-start: 0;
750}
751
752xul|radio {
753 -moz-binding: url("chrome://global/content/bindings/radio.xml#radio");
9168a62c
RK
754 -moz-padding-start: 0;
755}
756
757xul|*.radio-icon,
758xul|*.checkbox-icon {
759 -moz-margin-end: 0;
760}
cac2a998 761*/
9168a62c 762html|a:-moz-focusring,
e6947267
RK
763.text-link:-moz-focusring,
764.inline-link:-moz-focusring {
1eb9479d
RK
765 /* Don't specify the outline-color, we should always use initial value. */
766 outline: 1px dotted;
9168a62c 767}