start 2.25 dev cycle
[themes.git] / EarlyBlue / global / checkbox.css
... / ...
CommitLineData
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/. */
4
5/* ===== checkbox.css ===================================================
6 == Styles used by the XUL checkbox element.
7 ======================================================================= */
8
9@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
10
11/* ::::: checkbox ::::: */
12
13checkbox {
14 margin: 1px 2px;
15 border-left: 1px transparent;
16 border-right: 1px transparent;
17}
18
19.checkbox-spacer-box {
20 -moz-box-align: center;
21 border-right: 4px solid transparent;
22}
23
24.checkbox-label-center-box {
25 -moz-box-align: center;
26}
27
28.checkbox-label-box {
29 border: 1px solid transparent;
30 -moz-box-align: center;
31}
32
33.checkbox-icon[src] {
34 -moz-margin-end: 2px;
35}
36
37.checkbox-label {
38 margin: 0 !important;
39}
40
41/* ..... focused state ..... */
42
43checkbox:-moz-focusring > .checkbox-label-center-box > .checkbox-label-box {
44 border: 1px dotted #9999CC;
45}
46
47/* ..... disabled state ..... */
48
49checkbox[disabled="true"] > .checkbox-spacer-box > .checkbox-check {
50 background-color: #CCD0DD;
51}
52
53checkbox[disabled="true"] {
54 color: #999999 !important;
55}
56
57/* ::::: checkmark image ::::: */
58
59.checkbox-check {
60 border: 1px inset #CCD0DD;
61 width: 12px;
62 height: 12px;
63 background: transparent 50% 50% no-repeat;
64}
65
66checkbox:hover:active > .checkbox-spacer-box > .checkbox-check {
67 background-color: #CCD0DD;
68}
69
70/* ..... checked state ..... */
71
72checkbox[checked="true"] > .checkbox-spacer-box > .checkbox-check {
73 background-image: url("chrome://global/skin/checkbox/cbox-check.gif");
74}
75
76checkbox[checked="true"][disabled="true"] > .checkbox-spacer-box > .checkbox-check {
77 background-image: url("chrome://global/skin/checkbox/cbox-check-disabled.gif") !important
78}