How to partially override my GTK theme? I want to add a highlight to the current tab, but keep everything else

The css theme I'm using is Cascade FYI

5 points · 2 comments · view on lemmy.world

2 Comments

bali10050@lemmy.world · 2 pts · 3y (1 reply)

Try .tabbrowser-tab[selected]{background: #555 !important}

rockhandle@lemmy.world · 2 pts · 3y

Thank you! I added a line to your code and it worked!

.tab-background[selected="true"] {
      background-color: #171A26 !important;
      background-image: none !important;
    }