fix(scss/global): Inherit colors for input and textarea (#541)

pull/536/merge
Sorin Davidoi 2018-09-22 23:26:53 +00:00 zatwierdzone przez Nolan Lawson
rodzic fc46835dec
commit 1852f4842f
1 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

@ -82,6 +82,12 @@ input {
box-sizing: border-box;
}
// Fixes gray/black background when using a dark GTK theme
input, textarea {
background: inherit;
color: inherit;
}
button, .button {
font-size: 1.2em;
background: var(--button-bg);
@ -205,4 +211,4 @@ textarea {
margin: -0.1em 0;
object-fit: contain;
vertical-align: middle;
}
}