From c3a649c75504a68d7ef498b24b85198029eab167 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Thu, 16 Jan 2020 18:28:36 +0100 Subject: [PATCH] Fix cursor on disabled contenteditable divs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The cursor should be a default cursor, as the text cursor implies that text can be introduced. Signed-off-by: Daniel Calviño Sánchez --- core/css/inputs.scss | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/css/inputs.scss b/core/css/inputs.scss index 29a9138b19..175790b5f3 100644 --- a/core/css/inputs.scss +++ b/core/css/inputs.scss @@ -126,7 +126,6 @@ div[contenteditable=false] { border: 1px solid var(--color-background-darker); outline: none; border-radius: var(--border-radius); - cursor: text; background-color: var(--color-background-dark); color: var(--color-text-lighter); @@ -229,7 +228,6 @@ textarea, div[contenteditable=true] { div[contenteditable=false] { color: var(--color-text-lighter); - cursor: text; font-family: inherit; height: auto; }