first (largest) part of sync for both themes with toolkit windows theme changes in...
[themes.git] / EarlyBlue / global / checkbox.css
CommitLineData
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/. */
128000f4 4
df8c26c4
RK
5/* ===== checkbox.css ===================================================
6 == Styles used by the XUL checkbox element.
7 ======================================================================= */
8
128000f4 9@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
10
df8c26c4 11/* ::::: checkbox ::::: */
f6e0a33f 12
74d14f90 13checkbox {
d36c7ec4 14 margin: 1px 2px;
76983f4c 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;
74d14f90 26}
27
28.checkbox-label-box {
74d14f90 29 border: 1px solid transparent;
55509a91 30 -moz-box-align: center;
74d14f90 31}
32
76983f4c 33.checkbox-icon[src] {
dae45075 34 margin-inline-end: 2px;
74d14f90 35}
36
37.checkbox-label {
38 margin: 0 !important;
39}
40
41/* ..... focused state ..... */
42
024ec655 43checkbox:-moz-focusring > .checkbox-label-center-box > .checkbox-label-box {
74d14f90 44 border: 1px dotted #9999CC;
45}
46
47/* ..... disabled state ..... */
48
e6947267 49checkbox[disabled="true"] > .checkbox-check,
76983f4c 50checkbox[disabled="true"] > .checkbox-spacer-box > .checkbox-check {
df8c26c4 51 background-color: #CCD0DD;
74d14f90 52}
53
54checkbox[disabled="true"] {
55 color: #999999 !important;
56}
57
58/* ::::: checkmark image ::::: */
59
60.checkbox-check {
74d14f90 61 border: 1px inset #CCD0DD;
e6947267
RK
62 width: 1em;
63 height: 1em;
64 min-width: 12px;
65 min-height: 12px;
74d14f90 66 background: transparent 50% 50% no-repeat;
67}
76983f4c 68
e6947267 69checkbox > .checkbox-check {
dae45075 70 margin-inline-end: 4px;
e6947267
RK
71}
72
73checkbox:hover:active > .checkbox-check,
76983f4c 74checkbox:hover:active > .checkbox-spacer-box > .checkbox-check {
df8c26c4 75 background-color: #CCD0DD;
74d14f90 76}
77
78/* ..... checked state ..... */
79
e6947267 80checkbox[checked="true"] > .checkbox-check,
76983f4c 81checkbox[checked="true"] > .checkbox-spacer-box > .checkbox-check {
74d14f90 82 background-image: url("chrome://global/skin/checkbox/cbox-check.gif");
83}
e12e6531 84
e6947267 85checkbox[checked="true"][disabled="true"] > .checkbox-check,
76983f4c 86checkbox[checked="true"][disabled="true"] > .checkbox-spacer-box > .checkbox-check {
74d14f90 87 background-image: url("chrome://global/skin/checkbox/cbox-check-disabled.gif") !important
88}