Update Waybar styles for improved transparency and button margins

This commit is contained in:
2025-10-27 21:20:47 +00:00
parent 217aa3aa89
commit 987e0918ee

View File

@@ -7,7 +7,7 @@
} }
window#waybar { window#waybar {
background: rgba(30, 30, 46, 0.85); background: rgba(30, 30, 46, 0.45);
color: #cdd6f4; color: #cdd6f4;
} }
@@ -22,13 +22,23 @@ window#waybar {
#workspaces button { #workspaces button {
padding: 0px 10px; padding: 0px 10px;
margin: 4px 3px; margin: 1px 3px;
border-radius: 10px; /* border-radius: 10px; */
color: #cdd6f4; color: #cdd6f4;
background: transparent; background: transparent;
transition: all 0.3s ease; transition: all 0.3s ease;
} }
#workspaces button:nth-child(1) {
border-top-left-radius: 100%;
border-bottom-left-radius: 100%;
}
#workspaces button:nth-last-child(1) {
border-top-right-radius: 100%;
border-bottom-right-radius: 100%;
}
#workspaces button.active { #workspaces button.active {
background: rgba(137, 180, 250, 0.3); background: rgba(137, 180, 250, 0.3);
color: #89b4fa; color: #89b4fa;