overlay_tab_audio_icons: Set fill color and fill-opacity for icons

This makes sure that the icon stays visible unless your theme colors
explicitly tells otherwise. Setting full fill-opacity makes the icons
look same between pinned and non-pinned tabs.
This commit is contained in:
MrOtherGuy
2023-05-11 19:26:44 +03:00
parent d9ed3a66b6
commit b2e37ffc57
+8 -6
View File
@@ -7,12 +7,14 @@ See the above repository for updates as well as full license text. */
.tab-throbber{ opacity: 1 !important; } .tab-throbber{ opacity: 1 !important; }
.tab-icon-overlay:not([crashed]){ .tab-icon-overlay:not([crashed]){
top: -5.5px; top: -5.5px;
inset-inline-end: -6px; inset-inline-end: -6px;
z-index: 1; z-index: 1;
padding: 2px; padding: 2px;
opacity: 1 !important; opacity: 1 !important;
stroke: var(--tab-icon-overlay-stroke, black) !important; stroke: var(--tab-icon-overlay-stroke, black) !important;
fill: var(--tab-icon-overlay-fill, white) !important;
fill-opacity: 1 !important;
} }
.tab-icon-overlay:not([crashed]):hover{ .tab-icon-overlay:not([crashed]):hover{
background-color: var(--tab-icon-overlay-stroke, black) !important; background-color: var(--tab-icon-overlay-stroke, black) !important;