Fix: style: show active workspace on hyprland

The `hyprland/workspaces` module has the CSS class
`active` rather than `focused` for the current workspace.

Update the default CSS selector for the current workspace
to match both `button.focused` and `button.active`.
This commit is contained in:
Nikolai Nechaev
2025-09-13 08:40:30 +09:00
committed by GitHub
parent 41de8964f1
commit 3435e33845

View File

@ -63,7 +63,7 @@ button:hover {
background: rgba(0, 0, 0, 0.2); background: rgba(0, 0, 0, 0.2);
} }
#workspaces button.focused { #workspaces button.focused, #workspaces button.active {
background-color: #64727D; background-color: #64727D;
box-shadow: inset 0 -3px #ffffff; box-shadow: inset 0 -3px #ffffff;
} }