diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2020-01-16 18:28:36 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2020-01-16 18:28:36 +0100 |
commit | 914172690c0e1dd121786fffdaf9686b7ed3ddae (patch) | |
tree | 3f5e56ce350d0d1bf5150b442cdef2764dd073af /core/css | |
parent | cf771c5816a1ab491610319c4cdb62c60b6a2040 (diff) | |
download | nextcloud-server-914172690c0e1dd121786fffdaf9686b7ed3ddae.tar.gz nextcloud-server-914172690c0e1dd121786fffdaf9686b7ed3ddae.zip |
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>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/inputs.scss | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/css/inputs.scss b/core/css/inputs.scss index 29a9138b19a..175790b5f30 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; } |