blob: d78477e8ba4c57b33df65295b607965deece172c (
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
|
/* 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 https://mozilla.org/MPL/2.0/. */
.container {
padding-inline: var(--space-small);
font-size: 15px;
}
.customize-header {
display: flex;
justify-content: space-between;
align-items: center;
-moz-context-properties: fill;
fill: currentColor;
color: currentColor;
.customize-close-button::part(button) {
background-image: url("chrome://global/skin/icons/close-12.svg");
}
}
.customize-firefox-tools {
.inputs {
display: flex;
flex-direction: column;
gap: var(--space-medium);
}
.input-wrapper {
display: flex;
align-items: center;
gap: var(--space-small);
> input {
margin-inline-start: 0;
}
> label {
display: inline-flex;
align-items: center;
gap: var(--space-small);
font-size: 0.9em;
}
.icon {
-moz-context-properties: fill;
fill: currentColor;
background-image: var(--tool-icon);
background-size: var(--icon-size-default);
width: var(--icon-size-default);
height: var(--icon-size-default);
background-position: center;
background-repeat: no-repeat;
}
}
}
|