Fixed dark mode form group style

This commit is contained in:
Peter Zimon 2019-10-20 09:21:15 +02:00 committed by Kevin Ansfield
parent 295d0442b1
commit f60fce91ca
2 changed files with 18 additions and 0 deletions

View File

@ -109,6 +109,19 @@ input:focus,
border-color: color-mod(var(--lightgrey) l(+10%));
}
.gh-input-append {
border-color: color-mod(var(--lightgrey));
}
.gh-input-group .gh-input:focus + .gh-input-append {
border-color: color-mod(var(--lightgrey) l(+10%));
}
.gh-input-append,
.gh-input-append:before {
background: color-mod(var(--lightgrey));
}
.settings-menu-container,
.gh-main-white {
background: #212A2E;

View File

@ -508,6 +508,11 @@ textarea {
box-shadow: inset 0 0 0 1px var(--blue);
}
.gh-input-group .gh-input:focus + .gh-input-append,
.gh-input-group .gh-input:focus + .gh-input-append:before {
background: var(--white);
}
.gh-input-append {
display: block;
position: relative;