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/. */ | |
351107c9 | 4 | |
b1eaa419 | 5 | @import url("chrome://global/skin/global.css"); |
351107c9 | 6 | |
7 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
8 | ||
9 | window.dialog { | |
10 | padding: 0; | |
11 | } | |
12 | ||
dbd844cb RK |
13 | /* Make nice LCARS border */ |
14 | .dialog-content-box { | |
15 | background-color: #A09090; | |
16 | border-radius: 5px 0 0 0; | |
17 | } | |
18 | ||
19 | .dialog-content-box:-moz-locale-dir(rtl) { | |
20 | border-radius: 0 5px 0 0; | |
21 | } | |
22 | ||
23 | #header { | |
24 | background-color: #9C9CFF; | |
25 | color: #000000; | |
26 | border: none; | |
27 | -moz-border-start: 3px solid #000000; | |
28 | border-radius: 0; | |
29 | -moz-margin-start: 37px; | |
30 | } | |
31 | ||
32 | .wizard-box { | |
33 | background-color: #000000; | |
34 | border-radius: 5px 0 0 0; | |
35 | -moz-margin-start: 5px; | |
36 | } | |
37 | ||
38 | .wizard-box:-moz-locale-dir(rtl) { | |
39 | border-radius: 0 5px 0 0; | |
40 | } | |
41 | ||
42 | .dialog-button-box { | |
43 | -moz-border-start: 5px solid #8050B0; /* match wizard-box margin */ | |
44 | -moz-padding-start: 2px; | |
45 | margin-top: 3px; | |
46 | } | |
47 | ||
3d6dd546 | 48 | treechildren::-moz-tree-image { |
8caa872d | 49 | -moz-margin-end: 2px; |
dbd844cb RK |
50 | list-style-image: url("chrome://communicator/skin/profile/profile.png"); |
51 | -moz-image-region: rect(0, 10px, 12px, 0); | |
52 | } | |
53 | ||
54 | treechildren::-moz-tree-image(selected) { | |
55 | -moz-margin-end: 2px; | |
56 | list-style-image: url("chrome://communicator/skin/profile/profile.png"); | |
57 | -moz-image-region: rect(0, 20px, 12px, 10px); | |
351107c9 | 58 | } |
59 | ||
3d6dd546 | 60 | treechildren::-moz-tree-image(rowMigrate-no) { |
351107c9 | 61 | list-style-image: url("chrome://communicator/skin/profile/migrate.gif"); |
dbd844cb | 62 | -moz-image-region: auto; |
351107c9 | 63 | } |
64 | ||
65 | /* profile selection dialog */ | |
66 | html#intro { | |
67 | width: 17em; | |
68 | } | |
69 | ||
70 | box#managebuttons > button { | |
71 | min-width: 8em; | |
72 | } | |
73 | ||
74 | /* display area */ | |
75 | box#contentarea { | |
76 | border-top: 2px solid #9C9CFF; | |
77 | border-bottom: 2px solid #9C9CFF; | |
78 | padding: 7px; | |
79 | } | |
80 | ||
81 | /* top border on status area */ | |
82 | box#wizardButtons { | |
83 | padding-top: 1px; | |
84 | padding-bottom: 1px; | |
85 | } | |
86 | ||
87 | box.selection { | |
88 | margin-top: 4px; | |
89 | } | |
03f6f39c | 90 | |
91 | description.error { | |
92 | color: #FF0000; | |
93 | } |