|
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 #copy-raw-data-to-clipboard, |
|
30 #copy-to-clipboard { |
|
31 padding-top: 2%; |
|
32 width: 100%; |
|
33 padding-bottom: 2%; |
|
34 margin: 1%; |
|
35 } |
|
36 |
|
37 table { |
|
38 background-color: -moz-Dialog; |
|
39 color: -moz-DialogText; |
|
40 font: message-box; |
|
41 font-size: xx-large; |
|
42 text-align: start; |
|
43 width: 100%; |
|
44 border: 1px solid ThreeDShadow; |
|
45 border-spacing: 0px; |
|
46 } |
|
47 |
|
48 th, td { |
|
49 border: 1px dotted ThreeDShadow; |
|
50 padding: 3px; |
|
51 } |
|
52 |
|
53 thead th { |
|
54 text-align: center; |
|
55 } |
|
56 |
|
57 th { |
|
58 text-align: start; |
|
59 background-color: Highlight; |
|
60 color: HighlightText; |
|
61 } |
|
62 |
|
63 th.column { |
|
64 white-space: nowrap; |
|
65 width: 0px; |
|
66 } |
|
67 |
|
68 td { |
|
69 text-align: start; |
|
70 border-top: 1px dotted ThreeDShadow; |
|
71 } |
|
72 |
|
73 .prefs-table { |
|
74 width: 100%; |
|
75 table-layout: fixed; |
|
76 } |
|
77 |
|
78 .pref-name { |
|
79 width: 70%; |
|
80 white-space: nowrap; |
|
81 overflow: hidden; |
|
82 } |
|
83 |
|
84 .pref-value { |
|
85 width: 30%; |
|
86 white-space: nowrap; |
|
87 overflow: hidden; |
|
88 } |
|
89 |
|
90 #profile-row { |
|
91 display: none; |
|
92 } |
|
93 |
|
94 #reset-box { |
|
95 display: none; |
|
96 } |
|
97 |