Skip to content

Commit

Permalink
Fix tabs color for firefox 119.0
Browse files Browse the repository at this point in the history
  • Loading branch information
datguypiko committed Oct 24, 2023
1 parent 4157aa3 commit 90bd324
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions userChrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ about:config -> svg.context-properties.content.enabled -> true*/
=====================================================================*/

/* Non active tabs have darker text */
.tabbrowser-tab:not([visuallyselected="true"]):not([multiselected]):not(:hover)
.tabbrowser-tab:not([selected]):not([multiselected]):not(:hover)
.tab-label-container
.tab-label {
color: var(--firefoxcss-non-active-tabs) !important;
Expand Down Expand Up @@ -598,7 +598,7 @@ about:config -> svg.context-properties.content.enabled -> true*/
min-width: 150px !important;
}

.tabbrowser-tab:not([visuallyselected="true"]):not([multiselected]):not(:hover)
.tabbrowser-tab:not([selected]):not([multiselected]):not(:hover)
.tab-icon-image {
opacity: 0.8 !important;
transition: opacity 250ms ease !important;
Expand Down Expand Up @@ -633,7 +633,7 @@ about:config -> svg.context-properties.content.enabled -> true*/
#tabbrowser-tabs
.tabbrowser-tab:hover
> .tab-stack
> .tab-background:not([selected="true"]) {
> .tab-background:not([selected]) {
border: 0 !important;
border-radius: var(--firefoxcss-border-radius) !important;
background-image: none !important;
Expand All @@ -652,7 +652,7 @@ about:config -> svg.context-properties.content.enabled -> true*/
}

/* Multiselect tabs */
#tabbrowser-tabs .tabbrowser-tab .tab-background[multiselected="true"] {
#tabbrowser-tabs .tabbrowser-tab .tab-background[multiselected] {
border: 0 !important;
border-radius: var(--firefoxcss-border-radius) !important;
background-image: none !important;
Expand Down

0 comments on commit 90bd324

Please sign in to comment.