Files
tubestation/browser/components/firefoxview/fxview-tab-row.css

205 lines
5.1 KiB
CSS

/* 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 {
--fxviewtabrow-element-background-hover: color-mix(in srgb, currentColor 14%, transparent);
--fxviewtabrow-element-background-active: color-mix(in srgb, currentColor 21%, transparent);
display: grid;
grid-template-columns: subgrid;
grid-column: span 9;
align-items: stretch;
border-radius: 4px;
}
@media (prefers-contrast) {
:host {
--fxviewtabrow-element-background-hover: ButtonText;
--fxviewtabrow-element-background-active: ButtonText;
--fxviewtabrow-text-color-hover: ButtonFace;
}
}
.fxview-tab-row-main {
display: grid;
grid-template-columns: subgrid;
grid-column: span 6;
gap: 16px;
border-radius: 4px;
align-items: center;
padding: 4px 8px;
user-select: none;
cursor: pointer;
text-decoration: none;
}
.fxview-tab-row-main,
.fxview-tab-row-main:visited,
.fxview-tab-row-main:hover:active,
.fxview-tab-row-button {
color: inherit;
}
.fxview-tab-row-main:hover,
.fxview-tab-row-button.ghost-button.icon-button:enabled:hover {
background-color: var(--fxviewtabrow-element-background-hover);
color: var(--fxviewtabrow-text-color-hover);
}
.fxview-tab-row-main:hover:active,
.fxview-tab-row-button.ghost-button.icon-button:enabled:hover:active {
background-color: var(--fxviewtabrow-element-background-active);
}
@media (prefers-contrast) {
.fxview-tab-row-main,
.fxview-tab-row-main:hover,
.fxview-tab-row-main:active {
background-color: transparent;
border: 1px solid LinkText;
color: LinkText;
}
.fxview-tab-row-main:visited .fxview-tab-row-main:visited:hover {
border: 1px solid VisitedText;
color: VisitedText;
}
}
.fxview-tab-row-favicon-wrapper {
height: 16px;
.fxview-tab-row-favicon::after {
display: block;
content: "";
background-size: 12px;
background-position: center;
background-repeat: no-repeat;
position: absolute;
height: 12px;
width: 12px;
-moz-context-properties: fill, stroke;
fill: currentColor;
stroke: var(--fxview-background-color-secondary);
}
&.bookmark .fxview-tab-row-favicon::after {
background-image: url("chrome://browser/skin/bookmark-12.svg");
inset-block-start: 9px;
inset-inline-end: -6px;
fill: var(--fxview-primary-action-background);
}
&.notification .fxview-tab-row-favicon::after {
background-image: radial-gradient(circle, light-dark(rgb(42, 195, 162), rgb(84, 255, 189)), light-dark(rgb(42, 195, 162), rgb(84, 255, 189)) 2px, transparent 2px);
height: 4px;
width: 100%;
inset-block-start: 20px;
}
&.soundplaying .fxview-tab-row-favicon::after {
background-image: url("chrome://global/skin/media/audio.svg");
inset-block-start: -5px;
inset-inline-end: -7px;
border-radius: 100%;
background-color: var(--fxview-background-color-secondary);
padding: 2px;
}
&.muted .fxview-tab-row-favicon::after {
background-image: url("chrome://global/skin/media/audio-muted.svg");
inset-block-start: -5px;
inset-inline-end: -7px;
border-radius: 100%;
background-color: var(--fxview-background-color-secondary);
padding: 2px;
}
}
.fxview-tab-row-favicon {
background-size: cover;
-moz-context-properties: fill;
fill: currentColor;
display: inline-block;
min-height: 16px;
min-width: 16px;
position: relative;
}
.fxview-tab-row-title {
text-align: match-parent;
}
.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-url {
color: var(--text-color-deemphasized);
text-decoration-line: underline;
direction: ltr;
text-align: match-parent;
}
.fxview-tab-row-date,
.fxview-tab-row-time {
color: var(--text-color-deemphasized);
white-space: nowrap;
}
.fxview-tab-row-url,
.fxview-tab-row-time {
font-weight: 400;
}
.fxview-tab-row-button {
margin: 0;
cursor: pointer;
min-width: 0;
background-color: transparent;
&[muted="true"],
&[soundplaying="true"] {
background-size: 16px;
background-repeat: no-repeat;
background-position: center;
-moz-context-properties: fill;
fill: currentColor;
}
&[muted="true"] {
background-image: url("chrome://global/skin/media/audio-muted.svg");
}
&[soundplaying="true"] {
background-image: url("chrome://global/skin/media/audio.svg");
}
}
@media (prefers-contrast) {
.fxview-tab-row-button {
border: 1px solid ButtonText;
color: ButtonText;
}
.fxview-tab-row-button.ghost-button.icon-button:enabled:hover {
border: 1px solid SelectedItem;
color: SelectedItem;
}
.fxview-tab-row-button.ghost-button.icon-button:enabled:active {
color: SelectedItem;
}
.fxview-tab-row-button.ghost-button.icon-button:enabled,
.fxview-tab-row-button.ghost-button.icon-button:enabled:hover,
.fxview-tab-row-button.ghost-button.icon-button:enabled:active {
background-color: ButtonFace;
}
}