blob: d8b33b1872e3f90a1911a2186a84589d8b96c338 (
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
|
/* 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/. */
.translations-panel-view {
font: menu;
width: 31em;
}
:where(#translations-panel) :is(description, label, menulist) {
margin: 0;
}
.translations-panel-header {
text-align: initial;
padding: var(--arrowpanel-padding);
padding-bottom: 0;
}
image.translations-panel-gear-icon {
/* Override the panel-info-button with a gear icon. */
list-style-image: url(chrome://global/skin/icons/settings.svg);
}
.translations-panel-content {
padding: var(--arrowpanel-padding);
gap: var(--arrowpanel-padding);
}
#translations-panel-lang-selection > label:first-child {
margin-block-start: 0;
}
#translations-panel-lang-selection > label {
margin-block: var(--arrowpanel-padding) 6px;
}
/* The default styling is to dim the default, but here override it so that it still uses
the primary color. */
.translations-panel-footer > button[default][disabled="true"] {
color: var(--button-primary-color);
background-color: var(--button-primary-bgcolor);
}
#translations-panel-translate-hint-action {
appearance: none;
background-color: var(--button-bgcolor);
border-radius: 4px;
color: var(--button-color);
padding: 8px 16px;
font-size: 0.9em;
}
#translations-panel-translate-hint-action:hover {
background-color: var(--button-hover-bgcolor);
}
#translations-panel-translate-hint-action:hover:active {
background-color: var(--button-active-bgcolor);
}
#translations-panel-translate-hint-action:focus-visible {
outline: var(--focus-outline);
outline-offset: var(--focus-outline-offset);
}
#translations-panel-error-message-hint {
margin-inline-start: 21px;
margin-block: 8px;
}
#translations-panel-error-message {
font-weight: 600;
}
.translations-panel-error-icon {
-moz-context-properties: fill;
fill: currentColor;
list-style-image: url(chrome://global/skin/icons/error.svg);
margin-inline-end: 5px;
width: 16px;
}
.translations-panel-error-header {
align-items: start;
}
#translations-panel-error {
border: 1px solid currentColor;
border-radius: 4px;
padding: 12px;
}
|