Fixed poll input background

This commit is contained in:
Niléane 2023-12-19 20:34:28 +01:00
commit ef2d50ce8b
No known key found for this signature in database
3 changed files with 13 additions and 1 deletions

View file

@ -1138,6 +1138,7 @@ body.app-body {
.app-body .poll__option input[type=text] {
border-radius: 8px;
border: 1px solid var(--color-lines);
background-color: var(--color-content-bg);
}
.app-body .poll__option input[type=text]:focus {
border-color: var(--color-accent);
@ -1146,6 +1147,9 @@ body.app-body {
margin-top: 5px;
padding-inline-start: 25px;
}
.app-body .compose-form__poll__select__label {
color: var(--color-content-fg)
}
.app-body .compose-form__poll__select__value {
color: var(--color-accent);
}