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