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