mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-14 20:23:53 +02:00
23 lines
552 B
CSS
23 lines
552 B
CSS
|
|
@media not (-moz-bool-pref: "zen.view.sidebar-expanded") {
|
|
.tabbrowser-tab:is([soundplaying], [muted], [activemedia-blocked])::after {
|
|
content:'';
|
|
position: absolute;
|
|
width: 3px !important;
|
|
border-radius: 3px !important;
|
|
height: calc(100% - 0px) !important;
|
|
top: 50%;
|
|
left: calc(100% - 2px) !important;
|
|
transform: translateY(-50%);
|
|
background-color: var(--zen-primary-color) !important;
|
|
}
|
|
|
|
.tabbrowser-tab:not([selected=true]){
|
|
border-radius: 0px;
|
|
}
|
|
|
|
.tabbrowser-tab:not([selected=true]):hover{
|
|
border-radius: 8px;
|
|
}
|
|
}
|
|
|