update global in both themes to withstand a manual diff check
[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 (and XHTML in netError.xhtml) button element.
40   ======================================================================= */
41
42 /* :::::::::: button :::::::::: */
43
44 button {
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
72 button:-moz-focusring > .button-box {
73   border: 1px dotted #9999CC;
74 }
75
76 /* .......... default state .......... */
77
78 button[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
84 button[default="true"] > .button-box > .button-icon {
85   -moz-margin-end: 0px;
86   -moz-margin-start: 2px;
87 }
88
89 button[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
96 button:hover:active,
97 button[open="true"],
98 button[checked="true"] {
99   border: 1px inset #CCD0DD;
100 }
101
102 button:hover:active > .button-box,
103 button[open="true"] > .button-box,
104 button[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
113 button[disabled="true"],
114 button[disabled="true"]:hover:active {
115   border: 1px outset #CCD0DD;
116   color: #999999;
117 }
118
119 button[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[type="menu-button"] {
129   -moz-box-align: center;
130   -moz-box-pack: center;
131   margin: 0px;
132   border: none;
133 }
134
135 .button-menu-dropmarker,
136 .button-menubutton-dropmarker {
137   margin: 1px;
138   width: 11px;
139   height: 11px;
140   background-color: transparent;
141   border: none;
142 }
143
144 .button-menubutton-dropmarker[open="true"] {
145   margin-top: 2px;
146   margin-bottom: 0;
147   -moz-margin-start: 2px;
148   -moz-margin-end: 0;
149 }
150
151
152 /* ::::: plain buttons ::::: */
153
154 button.plain {
155   border: 0px !important;
156   margin: 0px !important;
157   padding: 0px !important;
158 }
159
160 button[type="disclosure"] {
161   border: 0px !important;
162   margin: 0px !important;
163   padding: 0px !important;
164   list-style-image: url("chrome://global/skin/tree/twisty-closed.gif");
165   min-width: 0px !important;
166   background-color: transparent;
167 }
168
169 button[type="disclosure"][open="true"] {
170   list-style-image: url("chrome://global/skin/tree/twisty-open.gif");
171 }
172
173 /* ::::: xhtml buttons ::::: */
174
175 button::-moz-focus-inner {
176   padding: 0px;
177   border: 0px none;
178 }