From faa2f84f2a1221ae5b860ddb778059877f614798 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20S=C3=A9chet?= Date: Sat, 23 Apr 2022 18:44:23 +0200 Subject: [PATCH] la-possession: fix input background (#64488) --- static/la-possession/_custom.scss | 5 +++++ static/la-possession/_vars.scss | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/static/la-possession/_custom.scss b/static/la-possession/_custom.scss index 439fc28b..d136cb51 100644 --- a/static/la-possession/_custom.scss +++ b/static/la-possession/_custom.scss @@ -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 { diff --git a/static/la-possession/_vars.scss b/static/la-possession/_vars.scss index cbf20fc5..66249820 100644 --- a/static/la-possession/_vars.scss +++ b/static/la-possession/_vars.scss @@ -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;