dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

commit dc1f2f9b1f6a71171a6d619de929b7de3e95801e
parent c0c674d6a0dad3010dec740c735e540f39447eeb
Author: Chris <chris@echoz.io>
Date:   Thu, 20 Nov 2025 07:45:09 +0100

fix(firefox): color of selected tab

Diffstat:
Mmodules/firefox/userChrome.css.nix | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/firefox/userChrome.css.nix b/modules/firefox/userChrome.css.nix @@ -42,7 +42,7 @@ style: '' .tab-background { &:is([selected], [multiselected]) { - background-color: ${style.colors.bg.rgba} !important; + background-color: rgba(255,255,255,0.1) !important; } }