Skip to content

Commit

Permalink
Show muted tab icon alongside the favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
rockofox committed Feb 15, 2024
1 parent 976564b commit c5580fd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions userChrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,25 @@
/* Minima Source Code. Here be dragons. */
/* Only change this if you know what you're doing */

tab[muted] .tab-label::before {
background-image: url("chrome://browser/skin/tabbrowser/tab-audio-muted-small.svg");
background-size:100% 100%;
display: inline-block;
min-width: 12px;
width: var(--tab-font-size);
height: auto;
content:"\00a0";
position: relative;
-moz-context-properties: fill, fill-opacity, stroke;
fill: currentColor;
stroke: transparent;
margin-right: 0.2em;
}

tab:hover[muted] .tab-label::before {
display: none;
}

.titlebar-buttonbox-container {
display: var(--show-titlebar-buttons);
}
Expand Down

0 comments on commit c5580fd

Please sign in to comment.