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