From a849a50d84b1fbbae35b47b9f5b51bf06b500b27 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Wed, 11 Dec 2024 10:32:56 +0100 Subject: [PATCH] styles/buttons: Use `not-allowed` cursor for disabled buttons (#10179) --- app/styles/shared/buttons.module.css | 1 + 1 file changed, 1 insertion(+) diff --git a/app/styles/shared/buttons.module.css b/app/styles/shared/buttons.module.css index f5bf2589bf..0a7821e6b7 100644 --- a/app/styles/shared/buttons.module.css +++ b/app/styles/shared/buttons.module.css @@ -55,6 +55,7 @@ &[disabled] { background: linear-gradient(to bottom, var(--bg-color-top-light) 0%, var(--bg-color-bottom-light) 100%); color: var(--disabled-text-color) !important; + cursor: not-allowed; } }