|
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 /* ===== preferences.css ===================================================== |
|
6 == Styles used by the XUL prefwindow element. |
|
7 ======================================================================= */ |
|
8 |
|
9 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
|
10 |
|
11 /* ::::: dialog ::::: */ |
|
12 |
|
13 prefwindow { |
|
14 padding: 0px; |
|
15 } |
|
16 |
|
17 prefpane { |
|
18 padding: 8px; |
|
19 } |
|
20 |
|
21 prefwindow[type="child"] { |
|
22 padding: 8px; |
|
23 } |
|
24 |
|
25 prefwindow[type="child"] > prefpane { |
|
26 padding: 0px; |
|
27 } |
|
28 |
|
29 .prefWindow-dlgbuttons { |
|
30 padding-bottom: 8px; |
|
31 -moz-padding-start: 8px; |
|
32 -moz-padding-end: 8px; |
|
33 } |
|
34 |
|
35 prefwindow[type="child"] .prefWindow-dlgbuttons { |
|
36 padding: 0px; |
|
37 } |
|
38 |
|
39 radio[pane] { |
|
40 -moz-appearance: none; |
|
41 min-width: 4.5em; |
|
42 margin: 0; |
|
43 padding: 3px; |
|
44 color: -moz-FieldText; |
|
45 } |
|
46 |
|
47 .paneSelector { |
|
48 -moz-appearance: listbox; |
|
49 margin: 8px 8px 0 8px; |
|
50 padding: 0; |
|
51 } |
|
52 |
|
53 .paneButtonIcon { |
|
54 width: 32px; |
|
55 height: 32px; |
|
56 } |
|
57 |
|
58 radio[pane][selected="true"] { |
|
59 background-color: Highlight; |
|
60 color: HighlightText; |
|
61 } |
|
62 |