correct theme new addons manager in LCARStrek, some small improvements for EarlyBlue...
[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;
a064a540 53 text-shadow: none;
b1eaa419 54}
3a121502 55
b1eaa419 56.button-box {
57 -moz-border-radius: 3px;
3a121502 58 border: 1px solid transparent;
02920d2b
RK
59 padding-top: 1px;
60 padding-bottom: 2px;
61 -moz-padding-start: 3px;
62 -moz-padding-end: 4px;
b1eaa419 63}
351107c9 64
c79d2bbe 65.button-icon {
8caa872d 66 -moz-margin-end: 2px;
c79d2bbe
RK
67}
68
b1eaa419 69.button-text {
70 -moz-border-radius: 3px;
351107c9 71 margin: 0px !important;
b1eaa419 72 text-align: center;
351107c9 73}
74
b1eaa419 75/* .......... focused state .......... */
76
024ec655 77button:-moz-focusring > .button-box {
0c7f928d 78 border: 1px dotted #008484;
351107c9 79}
80
b1eaa419 81/* .......... default state .......... */
82
83button[default="true"] > .button-box {
84 font-weight: bold;
85 list-style-image: url("chrome://global/skin/icons/return.gif");
61290d60 86 -moz-box-direction: reverse;
c79d2bbe
RK
87}
88
89button[default="true"] > .button-box > .button-icon {
8caa872d
RK
90 -moz-margin-end: 0px;
91 -moz-margin-start: 2px;
351107c9 92}
93
b1eaa419 94button[default="true"]:hover > .button-box,
95button[default="true"]:hover:active > .button-box {
96 list-style-image: url("chrome://global/skin/icons/return-hover.gif");
97}
98
99button[default="true"][disabled="true"] > .button-box {
100 font-weight: bold;
101 list-style-image: url("chrome://global/skin/icons/return-disabled.gif") !important;
102}
103
104/* .......... active/open/checked state .......... */
105
106button:hover,
107button:hover:active {
4c18c82c 108 border: none;
b1eaa419 109 background-color: #FFCF00;
110 color: #000000;
111}
112
113button[open="true"] {
4c18c82c 114 border: none;
b1eaa419 115 background-color: #FF9F00;
116 color: #000000;
117}
118
4c18c82c
RK
119button[checked="true"]:not(:hover) {
120 border: none;
b1eaa419 121 background-color: #008484;
122 color: #000000;
123}
124
125button:hover:active > .button-box,
126button[open="true"] > .button-box,
127button[checked="true"] > .button-box {
02920d2b
RK
128 padding-top: 2px;
129 padding-bottom: 1px;
130 -moz-padding-start: 4px;
131 -moz-padding-end: 3px;
b1eaa419 132}
351107c9 133
b1eaa419 134/* .......... disabled state .......... */
135
3a121502 136button[disabled="true"],
137button[disabled="true"]:hover:active {
b1eaa419 138 border: none;
139 background-color: #000000 !important;
140 color: #8050B0 !important;
141}
142
143button[disabled="true"] > .button-box {
02920d2b
RK
144 padding-top: 1px !important;
145 padding-bottom: 2px !important;
146 -moz-padding-start: 3px !important;
147 -moz-padding-end: 4px !important;
b1eaa419 148}
149
150/* ::::: menu/menu-button buttons ::::: */
151
152button[type="menu-button"] {
153 -moz-box-align: center;
154 -moz-box-pack: center;
351107c9 155 margin: 0px;
b1eaa419 156 border: none;
157}
158
159.button-menu-dropmarker,
160.button-menubutton-dropmarker {
161 -moz-border-radius: 3px;
162 margin: 1px;
8b17a53f
RK
163 width: 11px;
164 height: 11px;
b1eaa419 165}
166
b1eaa419 167/* ::::: plain buttons ::::: */
168
169button.plain {
170 border: 0px !important;
171 margin: 0px !important;
172 padding: 0px !important;
351107c9 173}
c79d2bbe
RK
174
175button[type="disclosure"] {
176 border: 0px !important;
177 margin: 0px !important;
178 padding: 0px !important;
179 list-style-image: url("chrome://global/skin/tree/twisty-closed.gif");
180 min-width: 0px !important;
181 background-color: transparent;
182}
183
184button[type="disclosure"][open="true"] {
185 list-style-image: url("chrome://global/skin/tree/twisty-open.gif");
186}