suite default theme changes on trunk from 1.9.1 branch point up to 2010-02-21
[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 }
53
54 .button-box {
55   border: 1px solid transparent;
56   padding-top: 0;
57   padding-bottom: 1px;
58   -moz-padding-start: 2px;
59   -moz-padding-end: 3px;
60 }
61
62 .button-icon {
63   -moz-margin-end: 2px;
64 }
65
66 .button-text {
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 #9999CC;
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   -moz-margin-end: 0px;
90   -moz-margin-start: 2px;
91 }
92
93 button[default="true"][disabled="true"] > .button-box {
94   font-weight: bold;
95   list-style-image: url("chrome://global/skin/icons/return-disabled.gif");
96 }
97
98 /* .......... active/open/checked state .......... */
99
100 button:hover:active,
101 button[open="true"],
102 button[checked="true"] {
103   border: 1px inset #CCD0DD;
104 }
105
106 button:hover:active > .button-box,
107 button[open="true"] > .button-box,
108 button[checked="true"] > .button-box {
109   padding-top: 1px;
110   padding-bottom: 0px;
111   -moz-padding-start: 3px;
112   -moz-padding-end: 2px;
113 }
114
115 /* .......... disabled state .......... */
116
117 button[disabled="true"],
118 button[disabled="true"]:hover:active {
119   border: 1px outset #CCD0DD;
120   color: #999999;
121 }
122
123 button[disabled="true"] > .button-box {
124   padding-top: 0 !important;
125   padding-bottom: 1px !important;
126   -moz-padding-start: 2px !important;
127   -moz-padding-end: 3px !important;
128 }
129
130 /* ::::: menu/menu-button buttons ::::: */
131
132 button[type="menu-button"] {
133   -moz-box-align: center;
134   -moz-box-pack: center;
135   margin: 0px;
136   border: none;
137 }
138
139 .button-menu-dropmarker,
140 .button-menubutton-dropmarker {
141   margin: 1px;
142   width: 11px;
143   height: 11px;
144   background-color: transparent;
145   border: none;
146 }
147
148 .button-menubutton-dropmarker[open="true"] {
149   margin-top: 2px;
150   margin-bottom: 0;
151   -moz-margin-start: 2px;
152   -moz-margin-end: 0;
153 }
154
155
156 /* ::::: plain buttons ::::: */
157
158 button.plain {
159   border: 0px !important;
160   margin: 0px !important;
161   padding: 0px !important;
162 }
163
164 button[type="disclosure"] {
165   border: 0px !important;
166   margin: 0px !important;
167   padding: 0px !important;
168   list-style-image: url("chrome://global/skin/tree/twisty-closed.gif");
169   min-width: 0px !important;
170   background-color: transparent;
171 }
172
173 button[type="disclosure"][open="true"] {
174   list-style-image: url("chrome://global/skin/tree/twisty-open.gif");
175 }