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
|
/* 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/. */
.fxview-tab-row-favicon-wrapper {
height: 16px;
position: relative;
display: block;
.fxview-tab-row-favicon::after,
.fxview-tab-row-button::after,
&.pinned .fxview-tab-row-pinned-media-button {
display: block;
content: "";
background-size: 12px;
background-position: center;
background-repeat: no-repeat;
position: relative;
height: 12px;
width: 12px;
-moz-context-properties: fill, stroke;
fill: currentColor;
stroke: var(--fxview-background-color-secondary);
}
&:is(.pinnedOnNewTab, .bookmark):not(.attention) .fxview-tab-row-favicon::after {
inset-block-start: 9px;
inset-inline-end: -6px;
}
&.pinnedOnNewTab .fxview-tab-row-favicon::after,
&.pinnedOnNewTab .fxview-tab-row-button::after {
background-image: url("chrome://browser/skin/pin-12.svg");
}
&.bookmark .fxview-tab-row-favicon::after,
&.bookmark .fxview-tab-row-button::after {
background-image: url("chrome://browser/skin/bookmark-12.svg");
fill: var(--fxview-primary-action-background);
}
&.attention .fxview-tab-row-favicon::after,
&.attention .fxview-tab-row-button::after {
background-image: radial-gradient(circle, var(--attention-dot-color), var(--attention-dot-color) 2px, transparent 2px);
height: 4px;
width: 100%;
inset-block-start: 20px;
}
&.pinned .fxview-tab-row-pinned-media-button {
inset-block-start: -5px;
inset-inline-end: 1px;
border: var(--button-border);
border-radius: 100%;
background-color: var(--fxview-background-color-secondary);
padding: 6px;
min-width: 0;
min-height: 0;
position: absolute;
&[muted="true"] {
background-image: url("chrome://global/skin/media/audio-muted.svg");
}
&[soundplaying="true"] {
background-image: url("chrome://global/skin/media/audio.svg");
}
&:active,
&:hover:active {
background-color: var(--button-background-color-active);
}
}
}
.fxview-tab-row-container-indicator {
height: 16px;
width: 16px;
background-image: var(--identity-icon);
background-size: cover;
-moz-context-properties: fill;
fill: var(--identity-icon-color);
}
.fxview-tab-row-main {
:host(.pinned) & {
padding: var(--space-small);
min-width: unset;
margin: 0;
}
}
button.fxview-tab-row-main:hover {
& .fxview-tab-row-favicon-wrapper .fxview-tab-row-favicon::after {
stroke: var(--fxview-indicator-stroke-color-hover);
}
}
@media (prefers-contrast) {
button.fxview-tab-row-main {
border: 1px solid ButtonText;
color: ButtonText;
}
button.fxview-tab-row-main:enabled:hover {
border: 1px solid SelectedItem;
color: SelectedItem;
}
button.fxview-tab-row-main:enabled:active {
color: SelectedItem;
}
button.fxview-tab-row-main:enabled,
button.fxview-tab-row-main:enabled:hover,
button.fxview-tab-row-main:enabled:active {
background-color: ButtonFace;
}
}
|