Skip to content

Commit

Permalink
tabsbar: Fix icon overlay theming (FF132)
Browse files Browse the repository at this point in the history
Fixes #837
  • Loading branch information
rafaelmardojai committed Oct 3, 2024
1 parent 9538e43 commit 5393bd0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions theme/parts/tabsbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -284,20 +284,22 @@ tab {
/* Tab buttons */
.tab-icon-overlay,
.tab-close-button {
border: 0px solid transparent;
border: 0 !important;;
box-sizing: content-box; /* Avoid deformation on flexbox */
border-radius: 99px !important;
padding: 4px !important;
background-image: none !important;
background-color: transparent !important;
background-size: 24px;
transition: all 0.2s ease-out !important;
}
:root:not(:-moz-window-inactive) .tab-icon-overlay:hover,
:root:not(:-moz-window-inactive) .tab-close-button:hover {
background: var(--gnome-hover-color) !important;
background-color: var(--gnome-hover-color) !important;
}
:root:not(:-moz-window-inactive) .tab-icon-overlay:active,
:root:not(:-moz-window-inactive) .tab-close-button:active {
background: var(--gnome-active-color) !important;
background-color: var(--gnome-active-color) !important;
}

.tab-icon-stack[pinned]:is([soundplaying], [muted], [activemedia-blocked]) {
Expand All @@ -318,6 +320,7 @@ tab {
width: 12px !important;
height: 12px !important;
padding: 2px !important;
top: -6px !important;
}
/* Icon overlay small style */
.tab-icon-overlay:is([pinned], [sharing]):not([crashed]) {
Expand Down

0 comments on commit 5393bd0

Please sign in to comment.