1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-09-13 08:16:05 +00:00

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

This commit is contained in:
Mario Pietsch
2025-07-02 12:21:37 +02:00
committed by GitHub
parent c092772422
commit 02680b234e

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 {