summaryrefslogtreecommitdiffstats
path: root/comm/suite/themes/modern/global/radio.css
blob: a9fb28856f2bff20af9b253615acf634f6a6eed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* ===== radio.css ======================================================
  == Styles used by the XUL radio element.
  ======================================================================= */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* ::::: radio ::::: */

radio {
  -moz-box-align: center;
  margin: 0px 2px;
  border: 2px solid transparent;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-inline-start: 4px;
  padding-inline-end: 2px;
  border-radius: 4px 5px;
}

.radio-icon {
  margin-inline-start: 2px;
}

.radio-text {
  margin: 0px 2px !important;
}

/* ..... focused state ..... */

radio[focused="true"] {
  border-color: #98A5B2;
}
  
/* ..... disabled state ..... */

radio[disabled="true"] > .radio-label-box > .radio-label {
  color: #8C99AB !important;
}

/* ::::: checkmark image ::::: */

.radio-check {
  width: 13px;
  height: 13px;
  list-style-image: url("chrome://global/skin/radio/radio.png");
}

radio:hover:active > .radio-check {
  list-style-image: url("chrome://global/skin/radio/radio-act.png");
}

radio[disabled="true"] > .radio-check {
  list-style-image: url("chrome://global/skin/radio/radio-dis.png") !important;
}

/* ..... checked state ..... */

radio[selected] > .radio-check {
  list-style-image: url("chrome://global/skin/radio/radio-check.png");
}
  
radio[selected]:hover:active > .radio-check {
  list-style-image: url("chrome://global/skin/radio/radio-act-check.png");  
}

radio[selected][disabled="true"] > .radio-check {
  list-style-image: url("chrome://global/skin/radio/radio-dis-check.png") !important;
}