aboutsummaryrefslogtreecommitdiff
path: root/config/waybar/style.css
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2025-08-12 17:51:02 +0200
committerRuben Beltran del Rio <git@r.bdr.sh>2025-08-12 17:51:02 +0200
commit00f89fba7e0b5ca504102b7acb671356bbe7d622 (patch)
tree115cb7d5261550e4d45857fd9d319e74bb7890dd /config/waybar/style.css
parentb0f7dec7357ee87f1ae0cbd115629aaaffd47ce0 (diff)
Improve pandoc html output, update waybar
Diffstat (limited to 'config/waybar/style.css')
-rw-r--r--config/waybar/style.css39
1 files changed, 39 insertions, 0 deletions
diff --git a/config/waybar/style.css b/config/waybar/style.css
index 2857954..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,
@@ -135,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;
+}