Fixed disabled input field contrast

This commit is contained in:
Peter Zimon 2021-10-08 13:02:24 +02:00
parent 7ac85a3c02
commit cbfe554738
2 changed files with 2 additions and 7 deletions

View File

@ -168,11 +168,6 @@
font-size: 1.5rem;
}
.gh-offer-url .gh-input {
background: color-mod(var(--input-bg-color) l(-1%)) !important;
color: var(--midgrey-l2) !important;
}
/* Offers  Portal preview */
.gh-offer-portal-preview {
display: flex;

View File

@ -252,8 +252,8 @@ textarea {
.gh-input[disabled],
.gh-select select[disabled] {
background: var(--whitegrey-l2);
color: var(--midlightgrey);
background: color-mod(var(--input-bg-color) l(-1%));
color: var(--midlightgrey-d2);
border-color: var(--whitegrey);
opacity: 1.0;
}