Commit | Line | Data |
---|---|---|
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/. */ | |
4c6d77ed | 4 | |
5 | /* ===== config.css ============================================== | |
6 | == Styles for about:config | |
7 | ======================================================================= */ | |
8 | ||
9 | @import url("chrome://global/skin/"); | |
10 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
11 | ||
1c664a39 RK |
12 | #config { |
13 | padding: 0; | |
14 | } | |
15 | ||
4c6d77ed | 16 | /* ::::: warning screen ::::: */ |
17 | ||
18 | #warningScreen | |
19 | { | |
20 | background: #000000; | |
21 | } | |
22 | ||
23 | #warningBox | |
24 | { | |
25 | background: #000000; | |
c79d2bbe | 26 | color: #FF9F00; |
4c6d77ed | 27 | border: 1px solid #9C9FFF; |
569543b3 | 28 | border-radius: 10px; |
4c6d77ed | 29 | padding: 3em; |
30 | -moz-padding-start: 30px; | |
8caa872d RK |
31 | -moz-margin-start: 1em; |
32 | -moz-margin-end: 1em; | |
4c6d77ed | 33 | } |
34 | ||
35 | #warningInnerBox | |
36 | { | |
37 | max-width: 50em; | |
38 | } | |
39 | ||
40 | #warningTitle | |
41 | { | |
02920d2b | 42 | margin: 0 0 .6em; |
4c6d77ed | 43 | font-size: 160%; |
44 | border-bottom: 1px solid #008484; | |
45 | } | |
46 | ||
47 | #warningText | |
48 | { | |
49 | font-size: 110%; | |
8caa872d | 50 | -moz-margin-start: 0; |
4c6d77ed | 51 | } |
52 | ||
53 | #warningButton | |
54 | { | |
55 | margin-top: 0.6em; | |
56 | } | |
57 | ||
58 | #showWarningNextTime | |
59 | { | |
60 | margin-top: 0.6em; | |
61 | } | |
62 | ||
63 | #exclam | |
64 | { | |
65 | list-style-image: url("chrome://global/skin/icons/alert-exclam.gif"); | |
8caa872d | 66 | -moz-margin-end: 3em; |
4c6d77ed | 67 | } |
68 | ||
69 | /* ::::: tree rows ::::: */ | |
70 | ||
c79d2bbe | 71 | #configTreeBody::-moz-tree-cell-text(user) |
4c6d77ed | 72 | { |
73 | font-weight: bold; | |
74 | } | |
75 | ||
c79d2bbe | 76 | #configTreeBody::-moz-tree-cell-text(locked) |
4c6d77ed | 77 | { |
78 | font-style: italic; | |
79 | } | |
c79d2bbe RK |
80 | |
81 | #configTree | |
82 | { | |
1c664a39 | 83 | margin-top: 3px; |
c79d2bbe RK |
84 | } |
85 | ||
86 | #filterRow | |
87 | { | |
1c664a39 RK |
88 | } |
89 | ||
90 | #filterRow > label | |
91 | { | |
92 | -moz-margin-start: 0; | |
93 | } | |
94 | ||
95 | #textbox | |
96 | { | |
97 | -moz-margin-end: 0; | |
c79d2bbe | 98 | } |