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/. */ | |
f6e0a33f | 4 | |
5 | /* ===== dialog.css ===================================================== | |
6 | == Styles used by the XUL dialog element. | |
7 | ======================================================================= */ | |
8 | ||
df8c26c4 RK |
9 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
10 | ||
f6e0a33f | 11 | /* ::::: dialog ::::: */ |
12 | ||
caf7fc11 | 13 | dialog { |
df8c26c4 RK |
14 | padding-top: 8px; |
15 | padding-bottom: 10px; | |
16 | -moz-padding-start: 8px; | |
17 | -moz-padding-end: 10px; | |
f6e0a33f | 18 | } |
19 | ||
20 | /* ::::: dialog buttons ::::: */ | |
21 | ||
f6e0a33f | 22 | .dialog-button { |
23 | /* font: menu; */ | |
4c66fa00 | 24 | margin-top: 5px; |
f6e0a33f | 25 | } |
74d14f90 | 26 | |
27 | /* ::::: dialog header ::::: */ | |
28 | ||
29 | dialogheader { | |
02920d2b | 30 | margin: 0px 5px 5px; |
74d14f90 | 31 | border: 1px inset #666699; |
32 | padding: 3px 4px; | |
33 | background-color: #666699; | |
34 | color: #CCD0DD; | |
35 | } | |
36 | ||
37 | .dialogheader-title { | |
38 | margin: 0px !important; | |
39 | font-size: larger; | |
40 | font-weight: bold; | |
41 | } | |
42 | ||
43 | /* ::::: large dialog header ::::: */ | |
44 | ||
45 | .header-large { | |
46 | -moz-box-orient: vertical; | |
47 | margin: 0; | |
48 | border: none; | |
49 | border-bottom: 1px solid #000000; | |
df8c26c4 RK |
50 | padding-top: 12px; |
51 | padding-bottom: 12px; | |
52 | -moz-padding-start: 25px; | |
53 | -moz-padding-end: 5px; | |
74d14f90 | 54 | background-color: #CCD0DD; |
55 | color: #000000; | |
56 | } | |
57 | ||
58 | .header-large > .dialogheader-title { | |
59 | font: inherit; | |
60 | font-weight: bold; | |
61 | } | |
62 | ||
63 | .header-large > .dialogheader-description { | |
df8c26c4 | 64 | -moz-margin-start: 12px !important; |
74d14f90 | 65 | } |