Skip to content
Snippets Groups Projects
Commit 91417269 authored by Daniel Calviño Sánchez's avatar Daniel Calviño Sánchez
Browse files

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: default avatarDaniel Calviño Sánchez <danxuliu@gmail.com>
parent cf771c58
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment