From b2e37ffc57243e93f0193deb1dcaaa1a802e34d4 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Thu, 11 May 2023 19:26:44 +0300 Subject: [PATCH] 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. --- chrome/overlay_tab_audio_icons.css | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/chrome/overlay_tab_audio_icons.css b/chrome/overlay_tab_audio_icons.css index e03c571..677fa5c 100644 --- a/chrome/overlay_tab_audio_icons.css +++ b/chrome/overlay_tab_audio_icons.css @@ -7,14 +7,16 @@ See the above repository for updates as well as full license text. */ .tab-throbber{ opacity: 1 !important; } .tab-icon-overlay:not([crashed]){ - top: -5.5px; - inset-inline-end: -6px; - z-index: 1; - padding: 2px; - opacity: 1 !important; - stroke: var(--tab-icon-overlay-stroke, black) !important; + top: -5.5px; + inset-inline-end: -6px; + z-index: 1; + padding: 2px; + opacity: 1 !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{ background-color: var(--tab-icon-overlay-stroke, black) !important; border-radius: 10px !important; -} \ No newline at end of file +}