Merge pull request #18961 from nextcloud/backport/18939/stable18

[stable18] Fix cursor on disabled contenteditable divs
This commit is contained in:
John Molakvoæ 2020-01-18 08:40:43 +01:00 committed by GitHub
commit 357e8b76e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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