blob: 39f32271198b3a485af672f04098c3211d07d337 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* ===== button.css =====================================================
== Styles used by the XUL button element.
======================================================================= */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* :::::::::: button :::::::::: */
button {
/*-moz-appearance: button;*/
margin: 3px 7px 3px 7px;
min-width: 6.3em;
border: 1px solid;
border-color: #555555;
background-color: #eeeeee;
color: black;
border-radius: 3px 3px;
}
.button-box {
border: 1px solid transparent;
padding-top: 1px;
padding-bottom: 2px;
padding-inline-start: 3px;
padding-inline-end: 4px;
}
.button-text {
margin: 0 !important;
text-align: center;
}
/* .......... focused state .......... */
button:focus {
}
button:focus > .button-box {
border: 1px dotted black;
}
/* .......... default state .......... */
button[default="true"] {
margin: 1px 5px 1px 5px;
border-width: 2px;
border-radius: 3px 3px;
border-color: black;
}
/* .......... active/open/checked state .......... */
button:hover:active,
button[open="true"],
button[checked="true"] {
border-color: black;
background: #777777;
}
/* .......... disabled state .......... */
button[disabled="true"] {
border-color: #dddddd;
color: gray;
}
button[disabled="true"] > .button-box {
padding-top: 1px !important;
padding-bottom: 2px !important;
padding-inline-start: 3px !important;
padding-inline-end: 4px !important;
}
/* ::::: menu/menu-button buttons ::::: */
button[type="menu-button"] {
-moz-box-align: center;
-moz-box-pack: center;
margin: 0;
border: none;
}
.button-menu-dropmarker,
.button-menubutton-dropmarker {
-moz-appearance: none !important;
margin: 1px;
background-color: transparent !important;
border: none !important;
min-width:11px;
min-height:11px;
}
.button-menubutton-dropmarker[open="true"] {
margin-top: 2px;
margin-bottom: 0px;
margin-inline-start: 2px;
margin-inline-end: 0px;
}
/* ::::: plain buttons ::::: */
button.plain {
border: 0px !important;
margin: 0px !important;
padding: 0px !important;
}
button[type="disclosure"] {
border: 0px !important;
margin: 0px !important;
padding: 0px !important;
list-style-image: url("chrome://global/skin/tree/twisty-clsd.png");
min-width: 0px !important;
background-color: transparent;
}
button[type="disclosure"][open="true"] {
list-style-image: url("chrome://global/skin/tree/twisty-open.png");
}
|