blob: b775b66cbf37c7d92a421b8b9b29aa05f631e9f4 (
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
|
/* 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/. */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
:host(:not([native])) {
appearance: none;
background-color: var(--button-bgcolor, ButtonFace);
color: var(--button-color, ButtonText);
border-radius: 4px;
padding-block: 4px;
padding-inline: 12px 8px;
margin: 5px 2px 3px;
}
:host(:not([native])[size="medium"]) {
padding-block: 6px;
padding-inline: 16px 10px;
}
:host(:not([native])[size="large"]) {
padding-block: 8px;
padding-inline: 16px 12px;
}
:host(:not([native]):hover) {
background-color: var(--button-hover-bgcolor, color-mix(in srgb, currentColor 10%, ButtonFace));
}
:host(:not([native]):hover:active) {
background-color: var(--button-active-bgcolor, color-mix(in srgb, currentColor 20%, ButtonFace));
}
:host(:not([native]):focus-visible) {
outline: var(--focus-outline);
outline-offset: var(--focus-outline-offset);
}
#label-box {
min-width: 0;
pointer-events: none;
}
#label-box:not([native]) {
align-items: center;
justify-content: center;
font-weight: 600;
}
dropmarker {
pointer-events: none;
}
dropmarker:not([native]) {
display: flex;
appearance: none;
width: 12px;
height: unset;
}
dropmarker:not([native])::part(icon) {
list-style-image: url(chrome://global/skin/icons/arrow-down.svg);
-moz-context-properties: fill;
fill: currentColor;
}
#highlightable-label:not([highlightable="true"]),
#label[highlightable="true"] {
display: none;
}
|