sync with Classic in preparation for a 1.8a release
[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
38@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
f6e0a33f 39
74d14f90 40/* ===== button.css =====================================================
41 == Styles used by the XUL button element.
42 ======================================================================= */
43
44/* :::::::::: button :::::::::: */
f6e0a33f 45
46/* outer frame */
74d14f90 47
48button {
d36c7ec4 49 margin: 2px 3px;
74d14f90 50 min-width: 6.3em;
51 border: 1px outset #CCD0DD;
52 background-color: #CCD0DD;
53 color: #000000;
54}
55
56.button-box {
57 border: 1px solid transparent;
58 padding: 0px 3px 1px 2px;
59}
caf7fc11 60
74d14f90 61.button-text {
62 margin: 0px !important;
63 text-align: center;
64}
65
66/* .......... focused state .......... */
67
68button:focus {
69}
70
71button:focus > .button-box {
72 border: 1px dotted #9999CC;
73}
74
75/* .......... default state .......... */
76
d686d388 77button[default="true"] > .button-box {
74d14f90 78 font-weight: bold;
79 list-style-image: url("chrome://global/skin/icons/return.gif");
80 -moz-box-direction: reverse;
d686d388 81 padding-right: 6px;
74d14f90 82}
83
d686d388 84button[default="true"][disabled="true"] > .button-box {
74d14f90 85 font-weight: bold;
86 list-style-image: url("chrome://global/skin/icons/return-disabled.gif");
87}
88
89/* .......... active/open/checked state .......... */
90
91button:hover:active,
92button[open="true"],
93button[checked="true"] {
94 border: 1px inset #CCD0DD;
95}
96
97button:hover:active > .button-box,
98button[open="true"] > .button-box,
99button[checked="true"] > .button-box {
caf7fc11 100 padding: 1px 2px 0px 3px;
74d14f90 101}
102
103/* .......... disabled state .......... */
104
caf7fc11 105button[disabled="true"],
106button[disabled="true"]:hover:active {
74d14f90 107 border: 1px outset #CCD0DD;
108 color: #999999;
109}
110
111button[disabled="true"] > .button-box {
112 padding: 0px 3px 1px 2px !important;
113}
114
115/* ::::: menu/menu-button buttons ::::: */
f6e0a33f 116
117button[type="menu-button"] {
74d14f90 118 -moz-box-align: center;
119 -moz-box-pack: center;
120 margin: 0px;
121 border: none;
f6e0a33f 122}
123
74d14f90 124.button-menu-dropmarker,
125.button-menubutton-dropmarker {
126 margin: 1px;
7c110a07 127 background-image: url("chrome://global/skin/arrow/arrow-down.gif");
128 min-width: 11px;
129 min-height: 11px;
f6e0a33f 130}
74d14f90 131
132.button-menu-dropmarker[disabled="true"],
133.button-menubutton-dropmarker[disabled="true"] {
7c110a07 134 background-image: url("chrome://global/skin/arrow/arrow-down-disabled.gif");
f6e0a33f 135}
136
74d14f90 137.button-menubutton-dropmarker[open="true"] {
138 margin: 2px 0px 0px 2px;
139}
140
141
f6e0a33f 142/* ::::: plain buttons ::::: */
143
74d14f90 144button.plain {
145 border: 0px !important;
146 margin: 0px !important;
147 padding: 0px !important;
f6e0a33f 148}