fix disabled button if border colours are defined (#9127)

This commit is contained in:
Mario Pietsch
2025-07-02 11:21:37 +01:00
committed by GitHub
parent c092772422
commit 02680b234e
+6
View File
@@ -96,6 +96,12 @@ html button {
fill: <<colour button-foreground>>;
background: <<colour button-background>>;
border-color: <<colour button-border>>;
cursor: pointer;
}
button:disabled {
cursor: default;
color: <<colour muted-foreground>>;
}
button:disabled svg {