Skip to content
This repository has been archived by the owner on Jan 8, 2023. It is now read-only.

Commit

Permalink
Fixing favicon not being displayed when playing A/V in compact mode
Browse files Browse the repository at this point in the history
Closing bug #1
  • Loading branch information
edo0 authored Jun 16, 2021
1 parent d7702d5 commit c4bf21a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions chrome/userChrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
:root {
/* Tool Bar */
--toolbarbutton-outer-padding: 2px !important; /* Original: 3px, General is 2px */

}
:root [uidensity=normal] .toolbar-items, .tabbrowser-tab {
max-height: 38px;
}
:root[uidensity=normal] .toolbar-items, .tabbrowser-tab {
:root[uidensity=compact] .toolbar-items, .tabbrowser-tab {
max-height: 36px;
}
:root[uidensity=touch] .toolbar-items, .tabbrowser-tab {
Expand Down Expand Up @@ -397,6 +397,12 @@
list-style-image: url(chrome://global/skin/icons/settings.svg);
}

/** Sound Tab - Show with Favicons */
/* Makes the favicons always visible (also on hover) */
.tab-icon-image:not([pinned]){
opacity: 1 !important
}

/* Makes the speaker icon to always appear if the tab is playing (not only on hover) */
.tab-icon-overlay:not([crashed]),
.tab-icon-overlay[pinned][crashed][selected] {
Expand Down

0 comments on commit c4bf21a

Please sign in to comment.