]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix cursor on disabled contenteditable divs 18939/head
authorDaniel Calviño Sánchez <danxuliu@gmail.com>
Thu, 16 Jan 2020 17:28:36 +0000 (18:28 +0100)
committerDaniel Calviño Sánchez <danxuliu@gmail.com>
Thu, 16 Jan 2020 17:28:36 +0000 (18:28 +0100)
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>
core/css/inputs.scss

index 29a9138b19ac5084998db7abe504dac561bef092..175790b5f30eceb4c5567c6baa94663cd3297c47 100644 (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;
 }