From 6021261383a209ddc3220652ea2caf95eca4bbee Mon Sep 17 00:00:00 2001 From: carljustineoyales Date: Wed, 15 Oct 2025 20:45:42 +0800 Subject: [PATCH] fix(pulseaudio-slider): Use `background` in CSS example The `background-color` property does not work as expected for the slider. Using the `background` shorthand property correctly applies the color. --- man/waybar-pulseaudio-slider.5.scd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/waybar-pulseaudio-slider.5.scd b/man/waybar-pulseaudio-slider.5.scd index cb274826..0271e7c5 100644 --- a/man/waybar-pulseaudio-slider.5.scd +++ b/man/waybar-pulseaudio-slider.5.scd @@ -77,12 +77,12 @@ The slider is a component with multiple CSS Nodes, of which the following are ex min-height: 80px; min-width: 10px; border-radius: 5px; - background-color: black; + background: black; } #pulseaudio-slider highlight { min-width: 10px; border-radius: 5px; - background-color: green; + background: green; } ```