Skip to content

Commit

Permalink
Fix not rounded corners when using theme colors (fixes #470)
Browse files Browse the repository at this point in the history
  • Loading branch information
filips123 committed Sep 14, 2024
1 parent 250886b commit 304b560
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function configureThemeColor (window, styles, colorR, colorG, colorB) {
}

// Set background and text colors to the titlebar and tabs
styles.innerHTML += `#navigator-toolbox, html[tabsintitlebar] #main-menubar > *, html[tabsintitlebar] #titlebar > * { background-color: ${backgroundColor} !important; color: ${textColor} !important; }`;
styles.innerHTML += `#navigator-toolbox { background-color: ${backgroundColor} !important; color: ${textColor} !important; }`;
styles.innerHTML += `.tabbrowser-tab { color: ${textColor} !important; }`;
}

Expand Down

0 comments on commit 304b560

Please sign in to comment.