Projet

Général

Profil

0001-bring-higher-contrast-to-opening-hours-displayed-bac.patch

Paul Marillonnet, 05 octobre 2022 11:09

Télécharger (1,16 ko)

Voir les différences:

Subject: [PATCH] bring higher contrast to opening hours displayed background
 (#68406)

 chrono/manager/static/css/style.scss | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)
chrono/manager/static/css/style.scss
192 192
	&.opening-hours, &.exception-hours {
193 193
		z-index: 1;
194 194
		background:
195
			linear-gradient(
196
				135deg,
197
				hsla(65, 65%, 94%, 0.4) 20%,
198
				hsla(65, 55%, 92%, 0.7) 70%,
199
				hsl(65, 50%, 90%) 90%) fixed;
195
			repeating-linear-gradient(
196
				45deg,
197
				hsla(84, 66%, 75%, 0.64),
198
				hsla(88, 66%, 68%, 0.63) 20px,
199
				hsla(88, 66%, 68%, 0.63) 20px,
200
				hsla(84, 66%, 75%, 0.64) 30px);
200 201
		left: 0;
201 202
		width: 100%;
202 203
	}
203
	&.opening-hours {
204
		border-left: 0.5em solid hsl(57, 65%, 85%);
205
	}
206 204
	&.exception-hours {
207 205
		background:
208 206
			repeating-linear-gradient(
209
-