Projet

Général

Profil

0001-la-possession-fix-input-background-64488.patch

Corentin Séchet, 23 avril 2022 18:44

Télécharger (1,35 ko)

Voir les différences:

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(-)
static/la-possession/_custom.scss
113 113
	}
114 114
}
115 115

  
116
.form-content--body {
117
	input, input[type="search"], textarea, select {
118
		background: $xlight-gray;
119
	}
120
}
116 121

  
117 122
#footer-wrapper {
118 123
	h1,h2,h3 {
static/la-possession/_vars.scss
53 53

  
54 54
$wcs-step-current-label-color: $green;
55 55

  
56
$widget-background: $xlight-gray;
56
$widget-background: white;
57 57
$widget-focus-background: white;
58
$widget-border: 1px solid transparent;
59
$widget-focus-border: 1px solid $gray;
58
$widget-border: 1px solid $gray;
59
$widget-focus-border: 1px solid $primary-color;
60 60

  
61 61
$footer-background: $dark-gray;
62 62
$footer-color: $light-gray;
63
-