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