summaryrefslogtreecommitdiff
path: root/waybar
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2023-02-26 13:20:46 -0600
committerzachir <zachir@librem.one>2023-02-26 13:20:46 -0600
commita47fab2982f738b11306b7278aed5a4503a6f381 (patch)
treebeee3716fc13155857c807f46b8182927b3bf368 /waybar
parent9325826ab135737d80e2f1404c99f5b377f153f9 (diff)
add wlr workspace style to css
Diffstat (limited to 'waybar')
-rw-r--r--waybar/style.css17
1 files changed, 12 insertions, 5 deletions
diff --git a/waybar/style.css b/waybar/style.css
index 95198f2..05adb84 100644
--- a/waybar/style.css
+++ b/waybar/style.css
@@ -29,19 +29,26 @@ window#waybar.hidden {
}
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
+
+#workspaces button {
+ background: #2b55b2;
+ color: white;
+ border-bottom: 3px solid #000000;
+}
+
#workspaces button:hover {
- background: lightblue;
+ background: #39c1ed;
color: black;
border-bottom: 3px solid #ffffff;
}
-#workspaces button.focused {
- background: #1f1f1f;
+#workspaces button.active {
+ background: #39c1ed;
}
-#workspaces button.focused:hover {
- background: lightblue;
+#workspaces button.active:hover {
+ background: #39c1ed;
color: black;
border-bottom: 3px solid #ffffff;