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