OLD | NEW |
| (Empty) |
1 /* | |
2 * This Source Code is subject to the terms of the Mozilla Public License | |
3 * version 2.0 (the "License"). You can obtain a copy of the License at | |
4 * http://mozilla.org/MPL/2.0/. | |
5 */ | |
6 | |
7 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
8 | |
9 scrollbox | |
10 { | |
11 overflow: auto; | |
12 } | |
13 | |
14 #groupDisabledWarning | |
15 { | |
16 color: red; | |
17 } | |
18 | |
19 dialog:not([advancedMode=true]) #nodes-tree, | |
20 dialog:not([advancedMode=true]) #nodes-tree-splitter | |
21 { | |
22 display: none; | |
23 } | |
24 | |
25 treechildren::-moz-tree-cell-text(anchor) | |
26 { | |
27 font-weight: bold; | |
28 } | |
29 treechildren::-moz-tree-row(anchor, selected-false) | |
30 { | |
31 background-color: #FFC0C0; | |
32 } | |
33 | |
34 .attribute | |
35 { | |
36 padding: 5px; | |
37 } | |
38 .attribute > checkbox:focus + vbox | |
39 { | |
40 outline: 1px dotted ThreeDDarkShadow; | |
41 } | |
42 .attribute .label | |
43 { | |
44 -moz-user-focus: ignore; | |
45 } | |
46 .attribute.advanced .checkbox-label-box | |
47 { | |
48 display: none; | |
49 } | |
OLD | NEW |