theme-store/themes/2e3369c7-e450-46ba-8794-75ccb0de5e48/chrome.css
benstone326 d35bfef01f
Update chrome.css (#447)
Compatible with Zen browser 1.0.1-a.4
2024-09-24 09:36:07 +02:00

23 lines
617 B
CSS

@media not (-moz-bool-pref: "zen.view.sidebar-expanded") {
.tabbrowser-tab:is([soundplaying], [muted], [activemedia-blocked]) {
& .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;
}
}
}