Fix cursor on disabled contenteditable divs

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 <danxuliu@gmail.com>
This commit is contained in:
Daniel Calviño Sánchez 2020-01-16 18:28:36 +01:00
parent cf771c5816
commit 914172690c
1 changed files with 0 additions and 2 deletions

View File

@ -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;
}