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 | |
5 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
6 | ||
7 | /** | |
8 | * Small Dialog Header (without icon) | |
9 | **/ | |
10 | .box-smallheader | |
11 | { | |
12 | -moz-binding : url(chrome://communicator/content/dialogBindings.xml#smallheader); | |
569543b3 | 13 | border-radius : 3px; |
351107c9 | 14 | border : 1px solid #9C9CFF; |
15 | margin : 0px 5px 6px 5px; | |
16 | } | |
17 | ||
18 | .box-smallheader > .toolbar-primary | |
19 | { | |
20 | padding : 0px 0px 3px 0px; | |
21 | min-height : 0px; | |
22 | } | |
23 | ||
24 | .box-smallheader-left | |
25 | { | |
26 | font-size : larger; | |
27 | font-weight : bold; | |
28 | color : #9C9CFF; | |
29 | padding-left : 6px; | |
30 | } | |
31 | ||
32 | .box-smallheader-right | |
33 | { | |
34 | color : #FF9F00; | |
35 | padding-right : 6px; | |
36 | } | |
37 | ||
38 | .box-smallheader > .toolbar-primary | |
39 | { | |
40 | background-color : #000000; | |
41 | padding-top : 3px; | |
42 | } | |
43 | ||
44 | ||
45 | /** | |
46 | * Large Dialog Header (with icon) | |
47 | **/ | |
48 | .box-header | |
49 | { | |
50 | -moz-binding : url(chrome://global/skin/classicBindings.xml#largeheader); | |
51 | } | |
52 | ||
53 | .largeheader-box | |
54 | { | |
55 | } | |
56 | ||
57 | .largeheader-header-text | |
58 | { | |
59 | color : #FF9F00; | |
60 | font-weight : bold; | |
61 | margin-left : 23px; | |
62 | } | |
63 | ||
64 | .largeheader-desc-text | |
65 | { | |
66 | margin-left : 44px; | |
67 | } | |
68 | ||
69 | .largeheader-icon | |
70 | { | |
71 | width : 49px; | |
72 | height : 49px; | |
73 | margin : 5px; | |
74 | } | |
75 | ||
76 | /** | |
77 | * Dialog status line (blue) including progress area | |
78 | **/ | |
79 | .box-status | |
80 | { | |
81 | visibility : collapse; | |
82 | } | |
83 | ||
84 | /** | |
85 | * Utility classes for use when combined headers/footers are used | |
86 | **/ | |
87 | /* display area framed container */ | |
88 | #contentarea | |
89 | { | |
90 | border-top : 2px solid #9C9CFF; | |
91 | border-bottom : 2px solid #9C9CFF; | |
92 | padding : 7px; | |
93 | } |