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