From d0f0bdca2394c5911f91634bbc68409bad339042 Mon Sep 17 00:00:00 2001 From: Arthur Belleville Date: Sun, 27 Jul 2025 14:59:32 +0200 Subject: [PATCH] Add hover cursor styles for buttons in the theme CSS --- ui/src/ui-library/theme/index.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ui/src/ui-library/theme/index.css b/ui/src/ui-library/theme/index.css index 1d4c49a..2a48f87 100644 --- a/ui/src/ui-library/theme/index.css +++ b/ui/src/ui-library/theme/index.css @@ -135,4 +135,12 @@ scrollbar-width: thin; scrollbar-color: var(--color-border) transparent; } + + button:hover { + cursor: pointer; + } + + button:disabled:hover { + cursor: not-allowed; + } }