diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-10-19 12:41:56 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-10-20 12:23:30 +0200 |
| commit | c86fab0e8d470c7e30bb875c3f7f9d17fdb975f5 (patch) | |
| tree | 1873fbe914047060e8ef4f8d2349ee91a0342f85 /config/waybar/style.css | |
| parent | 4acf377f747bcce7e37294913dc8e44ddf625dc8 (diff) | |
| parent | ab1ee88d6eb31c6c57233ab35d65fa05717ee246 (diff) | |
Merge branch 'main' of git.sr.ht:~rbdr/dotfiles
Diffstat (limited to 'config/waybar/style.css')
| -rw-r--r-- | config/waybar/style.css | 45 |
1 files changed, 44 insertions, 1 deletions
diff --git a/config/waybar/style.css b/config/waybar/style.css index deee975..90489da 100644 --- a/config/waybar/style.css +++ b/config/waybar/style.css @@ -60,6 +60,7 @@ button:hover { #pulseaudio, #wireplumber, #custom-media, +#custom-builds, #tray, #mode, #idle_inhibitor, @@ -103,9 +104,13 @@ button:hover { } #idle_inhibitor { - background: #4F8FE6; + color: #0F261F; + background: #DAE6E3; } +#idle_inhibitor.activated { + background: #4F8FE6; +} #mpd { color: #0F261F; background-color: #FAED8F; @@ -131,3 +136,41 @@ button:hover { color: #0F261F; background-color: #B5D1CC; } + +menu { + background-color: rgba(15, 38, 31, 0.95); + border: none; + border-radius: 0; + transition-property: background-color; + transition-duration: .1s; + padding: 0; +} + +menuitem { + color: #DAE6E3; + border: none; + border-radius: 0; + padding: 5px 0; +} +menuitem:hover { + background: #4F8FE6; +} +menu separator { + background-color: #90A6A2; + margin: 5px 0; +} + +#custom-builds { + background-color: #90A6A2; + color: #0F261F; +} +#custom-builds.has_success { + background-color: #23C17C; +} +#custom-builds.has_running { + background-color: #FAED8F; +} +#custom-builds.has_failures { + background-color: #FA2B00; + color: #DAE6E3; +} |