update BreezyDX

This commit is contained in:
Henry Jameson 2025-03-26 17:37:59 +02:00
commit 7e0bc054d0

View file

@ -55,32 +55,33 @@ Root {
--defaultInputFocusGlow: shadow | 0 0 0 1 --link / 1; --defaultInputFocusGlow: shadow | 0 0 0 1 --link / 1;
} }
Button {
background: --parent;
}
Button:disabled { Button:disabled {
shadow: --buttonDefaultBevel, --buttonDefaultShadow shadow: --buttonDefaultBevel, --buttonDefaultShadow
} }
Button:hover { Button:hover {
background: --inheritedBackground;
shadow: --buttonDefaultHoverGlow, --buttonDefaultBevel, --buttonDefaultShadow shadow: --buttonDefaultHoverGlow, --buttonDefaultBevel, --buttonDefaultShadow
} }
Button:toggled { Button:toggled {
background: $blend(--bg 0.3 --accent) background: $blend(--inheritedBackground 0.3 --accent)
} }
Button:pressed { Button:pressed {
background: $blend(--bg 0.8 --accent) background: $blend(--inheritedBackground 0.8 --accent)
} }
Button:pressed:toggled { Button:pressed:toggled {
background: $blend(--bg 0.2 --accent) background: $blend(--inheritedBackground 0.2 --accent)
} }
Button:toggled:hover { Button:toggled:hover {
background: $blend(--bg 0.3 --accent) background: $blend(--inheritedBackground 0.3 --accent)
}
Button {
background: --bg;
} }
Input { Input {