From 2a06ca4daec32f4b13933a4b9263f763c06e78a4 Mon Sep 17 00:00:00 2001 From: Daniel Calviño Sánchez Date: Tue, 11 Dec 2018 10:25:48 +0100 Subject: Use default cursor for disabled primary buttons MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Disabled buttons use the default cursor, but as the cursor property for primary buttons is set after the cursor property for disabled buttons the latter is always overridden, even if the primary button is also disabled. Due to this it is necessary to explicitly set the default cursor for disabled primary buttons. Signed-off-by: Daniel Calviño Sánchez --- core/css/inputs.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/core/css/inputs.scss b/core/css/inputs.scss index 8b4198644da..eea6fa0fe59 100644 --- a/core/css/inputs.scss +++ b/core/css/inputs.scss @@ -110,6 +110,7 @@ div[contenteditable=true], // opacity is already defined to .5 if disabled background-color: var(--color-primary-element); color: var(--color-primary-text-dark); + cursor: default; } } } -- cgit v1.2.3