mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-14 20:23:53 +02:00
* Update chrome.css Saved issue with YT video opened in new tab and the indicator shows up, hence the video is not playing. * Update readme.md * Update theme.json
23 lines
594 B
CSS
23 lines
594 B
CSS
@media not (-moz-bool-pref: "zen.view.sidebar-expanded") {
|
|
.tabbrowser-tab:is([soundplaying], [muted]) {
|
|
& .tab-background::after {
|
|
content:'';
|
|
position: absolute;
|
|
width: 4px !important;
|
|
border-radius: 4px !important;
|
|
height: 66.66% !important;
|
|
top: 50%;
|
|
left: calc(100% - 4px) !important;
|
|
transform: translateY(-50%);
|
|
background-color: var(--zen-primary-color) !important;
|
|
}
|
|
|
|
&:not([selected='true']) .tab-background::after{
|
|
height: 33.33% !important;
|
|
}
|
|
|
|
&:not([selected='true']):hover .tab-background::after{
|
|
height: 66.66% !important;
|
|
}
|
|
}
|
|
}
|