mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-07 08:55:31 +02:00
33 lines
877 B
CSS
33 lines
877 B
CSS
.tab-icon-overlay {
|
|
opacity: 1 !important;
|
|
margin: initial !important;
|
|
border: none !important;
|
|
margin-right: 32px !important;
|
|
transform: translate(120%, 50%) scale(1.6) !important;
|
|
color: light-dark(black, white) !important;
|
|
background-color: transparent !important;
|
|
transition: 0.3s !important;
|
|
}
|
|
|
|
.tab-icon-overlay:hover {
|
|
color: var(--zen-primary-color) !important;
|
|
transition: 0.3s !important;
|
|
}
|
|
|
|
.tab-icon-overlay:is([soundplaying], [muted]):not([selected]) {
|
|
display: block !important;
|
|
}
|
|
|
|
/* Hide sound labels */
|
|
.tab-icon-sound-label,
|
|
.tab-icon-sound-playing-label {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Mute button takes place of tab icon when tabs are not expanded */
|
|
@media not (-moz-bool-pref: "zen.view.sidebar-expanded") {
|
|
.tab-icon-overlay {
|
|
margin: auto 30px !important;
|
|
transform: translate(-35%, 50%) scale(1.6) !important;
|
|
}
|
|
}
|