blob: 28ff8a072f75dddb3df86cfba8750515cd2e029d (
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
|
/* 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/. */
:host(:not([hidden])) {
display: flex;
align-items: center;
}
::slotted(a) {
margin-inline-end: 12px;
}
:host button {
-moz-context-properties: fill;
fill: currentColor;
}
:host([checked]) button {
background-image: url("chrome://global/skin/icons/check.svg");
}
button {
background-color: transparent;
color: inherit;
background-position: 8px center;
background-repeat: no-repeat;
background-size: 16px;
border: none;
position: relative;
display: block;
font: inherit;
padding: 4px 8px;
padding-inline-start: 32px;
text-align: start;
width: 100%;
}
button:dir(rtl),
button:-moz-locale-dir(rtl) {
background-position-x: right 8px;
}
:host([badged]) button::after {
content: "";
display: block;
width: 5px;
height: 5px;
border-radius: 50%;
background-color: var(--in-content-accent-color);
position: absolute;
top: 4px;
inset-inline-start: 24px;
}
button:enabled:hover {
background-color: var(--in-content-button-background-hover);
color: var(--in-content-button-text-color-hover);
}
button:enabled:hover:active {
background-color: var(--in-content-button-background-active);
color: var(--in-content-button-text-color-active);
}
button:focus-visible {
outline-offset: var(--in-content-focus-outline-inset);
}
button:disabled {
opacity: 0.4;
}
.submenu-container {
display: flex;
flex-direction: row;
}
.submenu-icon {
display: inline-block;
background-image: url("chrome://global/skin/icons/arrow-right.svg");
background-position: center center;
background-repeat: no-repeat;
fill: currentColor;
width: var(--size-item-small);
height: var(--size-item-small);
flex: 1 1 auto;
&:dir(rtl) {
background-image: url("chrome://global/skin/icons/arrow-left.svg");
}
}
.submenu-label {
flex: 90% 1 0;
}
|