1 /* ***** BEGIN LICENSE BLOCK *****
2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
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/
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
14 * The Original Code is "Classic" theme of mozilla.org code.
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.
22 * Robert Kaiser <KaiRo@KaiRo.at>
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.
36 * ***** END LICENSE BLOCK ***** */
38 /* ===== button.css =====================================================
39 == Styles used by the XUL (and XHTML in netError.xhtml) button element.
40 ======================================================================= */
42 /* :::::::::: button :::::::::: */
49 background-color: #000000;
56 border: 1px solid transparent;
59 -moz-padding-start: 3px;
60 -moz-padding-end: 4px;
69 margin: 0px !important;
73 /* .......... focused state .......... */
75 button:-moz-focusring > .button-box {
76 border: 1px dotted #008484;
79 /* .......... default state .......... */
81 button[default="true"] > .button-box {
83 list-style-image: url("chrome://global/skin/icons/return.gif");
84 -moz-box-direction: reverse;
87 button[default="true"] > .button-box > .button-icon {
89 -moz-margin-start: 2px;
92 button[default="true"]:hover > .button-box,
93 button[default="true"]:hover:active > .button-box {
94 list-style-image: url("chrome://global/skin/icons/return-hover.gif");
97 button[default="true"][disabled="true"] > .button-box {
99 list-style-image: url("chrome://global/skin/icons/return-disabled.gif") !important;
102 /* .......... active/open/checked state .......... */
105 button:hover:active {
107 background-color: #FFCF00;
111 button[open="true"] {
113 background-color: #FF9F00;
117 button[checked="true"]:not(:hover) {
119 background-color: #008484;
123 button:hover:active > .button-box,
124 button[open="true"] > .button-box,
125 button[checked="true"] > .button-box {
128 -moz-padding-start: 4px;
129 -moz-padding-end: 3px;
132 /* .......... disabled state .......... */
134 button[disabled="true"],
135 button[disabled="true"]:hover:active {
137 background-color: #000000 !important;
138 color: #8050B0 !important;
141 button[disabled="true"] > .button-box {
142 padding-top: 1px !important;
143 padding-bottom: 2px !important;
144 -moz-padding-start: 3px !important;
145 -moz-padding-end: 4px !important;
148 /* ::::: menu/menu-button buttons ::::: */
150 button[type="menu-button"] {
151 -moz-box-align: center;
152 -moz-box-pack: center;
157 .button-menu-dropmarker,
158 .button-menubutton-dropmarker {
165 /* ::::: plain buttons ::::: */
168 border: 0px !important;
169 margin: 0px !important;
170 padding: 0px !important;
173 button[type="disclosure"] {
174 border: 0px !important;
175 margin: 0px !important;
176 padding: 0px !important;
177 list-style-image: url("chrome://global/skin/tree/twisty-closed.gif");
178 min-width: 0px !important;
179 background-color: transparent;
182 button[type="disclosure"][open="true"] {
183 list-style-image: url("chrome://global/skin/tree/twisty-open.gif");
186 /* ::::: xhtml buttons ::::: */
188 button::-moz-focus-inner {