suite default theme changes on trunk from 1.9.1 branch point up to 2010-02-21
[themes.git] / LCARStrek / global / radio.css
CommitLineData
351107c9 1/* ***** BEGIN LICENSE BLOCK *****
2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3 *
4 * The contents of this file are subject to the Mozilla Public License Version
5 * 1.1 (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/MPL/
8 *
9 * Software distributed under the License is distributed on an "AS IS" basis,
10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 * for the specific language governing rights and limitations under the
12 * License.
13 *
14 * The Original Code is "Classic" theme of mozilla.org code.
15 *
16 * The Initial Developer of the Original Code is
17 * the Mozilla Organization.
18 * Portions created by the Initial Developer are Copyright (C) 1998-2001
19 * the Initial Developer. All Rights Reserved.
20 *
21 * Contributor(s):
22 * Robert Kaiser <KaiRo@KaiRo.at>
23 *
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
35 *
36 * ***** END LICENSE BLOCK ***** */
37
b1eaa419 38/* ===== radio.css ===================================================
39 == Styles used by the XUL radio element.
40 ======================================================================= */
41
f98e9249
RK
42@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
43
b1eaa419 44/* ::::: radio ::::: */
45
46radio {
2b722888 47 margin: 1px 2px;
3d6dd546 48 border-left: 1px transparent;
49 border-right: 1px transparent;
50}
51
52.radio-spacer-box {
53 -moz-box-align: center;
54 border-right: 4px solid transparent;
55 border-top: 1px;
56 border-bottom: 1px;
57}
58
59.radio-label-center-box {
60 -moz-box-align: center;
b1eaa419 61}
62
63.radio-label-box {
b1eaa419 64 border: 1px solid transparent;
2b722888 65 -moz-box-align: center;
b1eaa419 66}
67
3d6dd546 68.radio-icon[src] {
f98e9249 69 -moz-margin-end: 2px;
b1eaa419 70}
71
72.radio-label {
73 margin: 0px !important;
74}
75
76/* ..... focused state ..... */
77
3d6dd546 78radio[focused="true"] > .radio-label-center-box > .radio-label-box {
0c7f928d 79 border: 1px dotted #008484;
b1eaa419 80}
81
82/* ..... disabled state ..... */
83
3d6dd546 84radio[disabled="true"] > .radio-spacer-box > .radio-check-box1 {
f98e9249
RK
85 background-color: #000000;
86}
87
88radio[disabled="true"] {
b1eaa419 89 color: #8050B0;
90}
91
92/* ::::: checkmark image ::::: */
93
94.radio-check-box1 {
95/* -moz-box-align: center;
96 -moz-box-pack: center; */
b1eaa419 97 border: 1px solid #FF9F00;
98 -moz-border-radius: 50%;
99 width: 10px;
100 height: 10px;
f98e9249
RK
101 background-color: #000000;
102 /* background-color: transparent; */
b1eaa419 103}
104
105.radio-check-box2 {
106 -moz-border-radius: 50%;
107 padding: 1px;
108 width: 8px;
109 height: 8px;
110 list-style-image: none;
3d6dd546 111}
b1eaa419 112
3d6dd546 113radio:hover > .radio-spacer-box > .radio-check-box1,
114radio:hover:active > .radio-spacer-box > .radio-check-box1 {
b1eaa419 115 border: 1px solid #FFCF00;
116}
117
3d6dd546 118radio:hover > .radio-label-center-box > .radio-label-box,
119radio:hover:active > .radio-label-center-box > .radio-label-box {
0c7f928d 120 color: #FFCF00;
121}
122
3d6dd546 123radio[disabled="true"] > .radio-spacer-box > .radio-check-box1 {
b1eaa419 124 border: 1px solid #8050B0 !important;
125}
126
127/* ..... selected state ..... */
128
3d6dd546 129radio[selected="true"] > .radio-spacer-box > .radio-check-box1 > .radio-check-box2 {
b1eaa419 130 list-style-image: url("chrome://global/skin/radio/radio-check.gif");
131}
3d6dd546 132
133radio[selected="true"][disabled="true"] > .radio-spacer-box > .radio-check-box1 > .radio-check-box2 {
b1eaa419 134 list-style-image: url("chrome://global/skin/radio/radio-check-disabled.gif") !important
135}