Projet

Général

Profil

0001-scss-a11y-darken-gray-texts-that-are-too-light-49548.patch

Thomas Jund (congés, retour le 29/04), 16 décembre 2020 18:26

Télécharger (1,8 ko)

Voir les différences:

Subject: [PATCH] scss: a11y: darken gray texts that are too light (#49548)

 static/includes/_cells.scss     | 2 +-
 static/includes/_misc.scss      | 4 ++--
 static/includes/wcs/_steps.scss | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)
static/includes/_cells.scss
287 287
		flex-grow: 1;
288 288

  
289 289
		margin-right: 1rem;
290
		opacity: 0.3;
290
		opacity: 0.76;
291 291
		font-size: 80%;
292 292
	}
293 293
	span.form-status {
static/includes/_misc.scss
189 189
	top: 0px;
190 190
	right: 5px;
191 191
	background: white;
192
	color: #888;
192
	color: #767676;
193 193
	padding: 5px 10px;
194
	border: 1px solid #888;
194
	border: 1px solid;
195 195
	border-width: 0 1px 1px 1px;
196 196
	@media screen and ($max-mobile-viewport) {
197 197
		display: none;
static/includes/wcs/_steps.scss
10 10
$wcs-steps-spacing: 0.35rem !default; // half of default 0.7rem used in publik
11 11

  
12 12
// Step
13
$wcs-step-color: #868686 !default; // color for default marker & label
13
$wcs-step-color: #767676 !default; // color for default marker & label
14 14
$wcs-step-current-color: $primary-color !default;
15 15
$wcs-step-background: transparent !default;
16 16
$wcs-step-current-background: $wcs-step-background !default;
17
-