Merge pull request #17505 from nextcloud/design/input-contrast

Increase contast between text and placeholder in input fields
This commit is contained in:
Roeland Jago Douma 2019-10-11 12:53:25 +02:00 committed by GitHub
commit 15576dcba3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -52,7 +52,7 @@ div[contenteditable=true],
padding: 7px 6px;
font-size: 13px;
background-color: var(--color-main-background);
color: var(--color-text-lighter);
color: var(--color-main-text);
border: 1px solid var(--color-border-dark);
outline: none;
border-radius: var(--border-radius);
@ -934,3 +934,9 @@ label.infield {
height: 1px;
overflow: hidden;
}
::placeholder,
::-ms-input-placeholder,
::-webkit-input-placeholder {
color: var(--color-text-maxcontrast);
}