la-possession: fix input background (#64488)

This commit is contained in:
Corentin Sechet 2022-04-23 18:44:23 +02:00
parent 31a963a832
commit faa2f84f2a
2 changed files with 8 additions and 3 deletions

View File

@ -112,6 +112,11 @@ div.cell.text-cell {
}
}
.form-content--body {
input, input[type="search"], textarea, select {
background: $xlight-gray;
}
}
#footer-wrapper {
h1,h2,h3 {

View File

@ -53,10 +53,10 @@ $cell-image-padding: 0;
$wcs-step-current-label-color: $green;
$widget-background: $xlight-gray;
$widget-background: white;
$widget-focus-background: white;
$widget-border: 1px solid transparent;
$widget-focus-border: 1px solid $gray;
$widget-border: 1px solid $gray;
$widget-focus-border: 1px solid $primary-color;
$footer-background: $dark-gray;
$footer-color: $light-gray;