suite default theme changes on trunk from 1.9.1 branch point up to 2010-02-21
[themes.git] / LCARStrek / global / button.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/* ===== button.css =====================================================
39 == Styles used by the XUL button element.
40 ======================================================================= */
351107c9 41
c79d2bbe
RK
42@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
43
b1eaa419 44/* :::::::::: button :::::::::: */
351107c9 45
b1eaa419 46button {
47 -moz-border-radius: 3px;
2b722888 48 margin: 1px 2px;
b1eaa419 49 min-width: 6.3em;
50 border: none;
51 background-color: #000000;
52 color: #FFCF00;
53}
3a121502 54
b1eaa419 55.button-box {
56 -moz-border-radius: 3px;
3a121502 57 border: 1px solid transparent;
02920d2b
RK
58 padding-top: 1px;
59 padding-bottom: 2px;
60 -moz-padding-start: 3px;
61 -moz-padding-end: 4px;
b1eaa419 62}
351107c9 63
c79d2bbe 64.button-icon {
8caa872d 65 -moz-margin-end: 2px;
c79d2bbe
RK
66}
67
b1eaa419 68.button-text {
69 -moz-border-radius: 3px;
351107c9 70 margin: 0px !important;
b1eaa419 71 text-align: center;
351107c9 72}
73
b1eaa419 74/* .......... focused state .......... */
75
76button:focus {
351107c9 77}
78
b1eaa419 79button:focus > .button-box {
0c7f928d 80 border: 1px dotted #008484;
351107c9 81}
82
b1eaa419 83/* .......... default state .......... */
84
85button[default="true"] > .button-box {
86 font-weight: bold;
87 list-style-image: url("chrome://global/skin/icons/return.gif");
61290d60 88 -moz-box-direction: reverse;
c79d2bbe
RK
89}
90
91button[default="true"] > .button-box > .button-icon {
8caa872d
RK
92 -moz-margin-end: 0px;
93 -moz-margin-start: 2px;
351107c9 94}
95
b1eaa419 96button[default="true"]:hover > .button-box,
97button[default="true"]:hover:active > .button-box {
98 list-style-image: url("chrome://global/skin/icons/return-hover.gif");
99}
100
101button[default="true"][disabled="true"] > .button-box {
102 font-weight: bold;
103 list-style-image: url("chrome://global/skin/icons/return-disabled.gif") !important;
104}
105
106/* .......... active/open/checked state .......... */
107
108button:hover,
109button:hover:active {
110 border : none;
111 background-color: #FFCF00;
112 color: #000000;
113}
114
115button[open="true"] {
116 border : none;
117 background-color: #FF9F00;
118 color: #000000;
119}
120
121button[checked="true"] {
122 border : none;
123 background-color: #008484;
124 color: #000000;
125}
126
127button:hover:active > .button-box,
128button[open="true"] > .button-box,
129button[checked="true"] > .button-box {
02920d2b
RK
130 padding-top: 2px;
131 padding-bottom: 1px;
132 -moz-padding-start: 4px;
133 -moz-padding-end: 3px;
b1eaa419 134}
351107c9 135
b1eaa419 136/* .......... disabled state .......... */
137
3a121502 138button[disabled="true"],
139button[disabled="true"]:hover:active {
b1eaa419 140 border: none;
141 background-color: #000000 !important;
142 color: #8050B0 !important;
143}
144
145button[disabled="true"] > .button-box {
02920d2b
RK
146 padding-top: 1px !important;
147 padding-bottom: 2px !important;
148 -moz-padding-start: 3px !important;
149 -moz-padding-end: 4px !important;
b1eaa419 150}
151
152/* ::::: menu/menu-button buttons ::::: */
153
154button[type="menu-button"] {
155 -moz-box-align: center;
156 -moz-box-pack: center;
351107c9 157 margin: 0px;
b1eaa419 158 border: none;
159}
160
161.button-menu-dropmarker,
162.button-menubutton-dropmarker {
163 -moz-border-radius: 3px;
164 margin: 1px;
8b17a53f
RK
165 width: 11px;
166 height: 11px;
b1eaa419 167}
168
b1eaa419 169/* ::::: plain buttons ::::: */
170
171button.plain {
172 border: 0px !important;
173 margin: 0px !important;
174 padding: 0px !important;
351107c9 175}
c79d2bbe
RK
176
177button[type="disclosure"] {
178 border: 0px !important;
179 margin: 0px !important;
180 padding: 0px !important;
181 list-style-image: url("chrome://global/skin/tree/twisty-closed.gif");
182 min-width: 0px !important;
183 background-color: transparent;
184}
185
186button[type="disclosure"][open="true"] {
187 list-style-image: url("chrome://global/skin/tree/twisty-open.gif");
188}