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 | /* ===== groupbox.css ================================================== |
6 | == Styles used by the XUL groupbox and related elements. | |
7 | ======================================================================= */ | |
351107c9 | 8 | |
f98e9249 RK |
9 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
10 | ||
b1eaa419 | 11 | /* ::::: groupbox ::::: */ |
12 | ||
13 | groupbox { | |
569543b3 | 14 | border-radius: 5px; |
2b722888 | 15 | margin: 3px 2px; |
b1eaa419 | 16 | border: 2px solid #9C9CFF; |
02920d2b RK |
17 | padding-top: 3px; |
18 | padding-bottom: 5px; | |
19 | -moz-padding-start: 5px; | |
20 | -moz-padding-end: 3px; | |
b1eaa419 | 21 | } |
22 | ||
23 | .groupbox-body { | |
24 | padding: inherit; | |
25 | } | |
26 | ||
27 | caption { | |
569543b3 | 28 | border-radius: 7px; |
02920d2b | 29 | margin: 0px 6px 2px; |
b1eaa419 | 30 | padding: 0px 3px; |
f98e9249 | 31 | background-color: #9C9CFF; |
b1eaa419 | 32 | color: #000000; |
33 | } | |
cfae8c74 RK |
34 | |
35 | .caption-text { | |
36 | margin-top: 0; | |
37 | margin-bottom: 0; | |
38 | -moz-margin-start: 1px; | |
39 | -moz-margin-end: 2px; | |
40 | } |