|
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 html { |
|
6 background-color: -moz-Field; |
|
7 color: -moz-FieldText; |
|
8 font: message-box; |
|
9 } |
|
10 |
|
11 body { |
|
12 width: 90%; |
|
13 margin-left: 5%; |
|
14 margin-right: 5%; |
|
15 } |
|
16 |
|
17 .page-subtitle { |
|
18 margin-bottom: 3em; |
|
19 } |
|
20 |
|
21 .major-section { |
|
22 margin-top: 2em; |
|
23 margin-bottom: 1em; |
|
24 font-size: large; |
|
25 text-align: start; |
|
26 font-weight: bold; |
|
27 } |
|
28 |
|
29 table { |
|
30 background-color: -moz-Dialog; |
|
31 color: -moz-DialogText; |
|
32 font: message-box; |
|
33 text-align: start; |
|
34 width: 100%; |
|
35 border: 1px solid ThreeDShadow; |
|
36 border-spacing: 0px; |
|
37 } |
|
38 |
|
39 th, td { |
|
40 border: 1px dotted ThreeDShadow; |
|
41 padding: 3px; |
|
42 } |
|
43 |
|
44 thead th { |
|
45 text-align: center; |
|
46 } |
|
47 |
|
48 th { |
|
49 text-align: start; |
|
50 background-color: Highlight; |
|
51 color: HighlightText; |
|
52 } |
|
53 |
|
54 th.column { |
|
55 white-space: nowrap; |
|
56 width: 0px; |
|
57 } |
|
58 |
|
59 td { |
|
60 text-align: start; |
|
61 border-top: 1px dotted ThreeDShadow; |
|
62 } |
|
63 |
|
64 .prefs-table { |
|
65 width: 100%; |
|
66 table-layout: fixed; |
|
67 } |
|
68 |
|
69 .pref-name { |
|
70 width: 70%; |
|
71 white-space: nowrap; |
|
72 overflow: hidden; |
|
73 } |
|
74 |
|
75 .pref-value { |
|
76 width: 30%; |
|
77 white-space: nowrap; |
|
78 overflow: hidden; |
|
79 } |
|
80 |
|
81 #reset-box { |
|
82 background-color: -moz-Dialog; |
|
83 border: 1px solid ThreeDShadow; |
|
84 color: -moz-DialogText; |
|
85 float: right; |
|
86 margin-top: 2em; |
|
87 margin-bottom: 20px; |
|
88 -moz-margin-start: 20px; |
|
89 -moz-margin-end: 0; |
|
90 padding: 16px; |
|
91 width: 30%; |
|
92 visibility: hidden; |
|
93 } |
|
94 |
|
95 #reset-box:-moz-dir(rtl) { |
|
96 float: left; |
|
97 } |
|
98 |
|
99 #reset-box > h3 { |
|
100 margin-top: 0; |
|
101 } |
|
102 |
|
103 #reset-box > button { |
|
104 display: block; |
|
105 margin: auto; |
|
106 } |
|
107 |
|
108 .block { |
|
109 display: block; |
|
110 } |
|
111 |
|
112 .hidden { |
|
113 display: none; |
|
114 } |