diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-07 01:43:46 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-07 01:44:22 +0200 |
commit | de404e8e4f38696d199b754b387bbb711518f276 (patch) | |
tree | ea0cdea590f213523679f54b74d2d5ac981930a8 | |
parent | 0b15ad61d85a12777a38bb66ea3cfe637085c27d (diff) |
removed bottom border and cleanup.
-rw-r--r-- | config/hyprland/waybar/style.css | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/config/hyprland/waybar/style.css b/config/hyprland/waybar/style.css index 6621c03..6faa931 100644 --- a/config/hyprland/waybar/style.css +++ b/config/hyprland/waybar/style.css @@ -5,8 +5,7 @@ } window#waybar { - background-color: rgba(46, 52, 64, 0.5); - border-bottom: 3px solid rgba(76, 86, 106, 0.5); + background-color: transparent; color: #d8dee9; transition-property: background-color; transition-duration: .5s; @@ -17,9 +16,6 @@ window#waybar.hidden { } button { - /* Use box-shadow instead of border so the text isn't offset */ - box-shadow: inset 0 -3px transparent; - /* Avoid rounded borders under each button name */ border: none; border-radius: 0; } @@ -48,11 +44,6 @@ button:hover { background-color: #eb4d4b; } -#mode { - background-color: #64727D; - border-bottom: 3px solid #ffffff; -} - #clock, #battery, #cpu, @@ -68,14 +59,15 @@ button:hover { #mode, #idle_inhibitor, #scratchpad, +#window, #mpd { padding: 0 10px; + box-shadow: inset 0 0 3 rgba(0, 0, 0, 1); } #window { - background-color: #88c0d0; + background-color: #8fbcbb; color: #2e3440; - border-radius: 20px; padding: 0 10px; } |