Fixed payment settings input field UI bug

This commit is contained in:
Peter Zimon 2021-03-08 17:16:16 +01:00
parent 43c3b3cd43
commit 14fcd3c7fa

View File

@ -640,7 +640,7 @@ textarea {
min-width: 0; /* Firefox fix */
}
.gh-input-group .gh-input:focus + .gh-input-append {
.form-group:not(.error) .gh-input-group .gh-input:focus + .gh-input-append {
border-color: color-mod(var(--green));
box-shadow: inset 0 0 0 1px var(--green);
}
@ -694,6 +694,15 @@ textarea {
border-bottom-left-radius: 0;
}
.form-group.error .gh-input-group .gh-input,
.form-group.error .gh-input-group .gh-input + .gh-input-append {
border-color: color-mod(var(--red));
}
.form-group.error .gh-input-group .gh-input:focus + .gh-input-append {
box-shadow: inset 0 0 0 1px var(--red);
}
/* FFF: Fucking Firefox Fixes
/* ---------------------------------------------------------- */