Projet

Général

Profil

0001-scss-don-t-add-borders-to-light-form-style-focused-i.patch

Frédéric Péters, 26 juillet 2018 20:16

Télécharger (851 octets)

Voir les différences:

Subject: [PATCH] scss: don't add borders to light form style focused inputs
 (#25507)

 static/includes/_forms.scss | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
static/includes/_forms.scss
278 278
	input[type="datetime-local"], input[type="month"], input[type="time"],
279 279
	input[type="week"], textarea, select {
280 280
		border-width: 0 0 1px 0;
281
		&:focus {
281
		&:focus:not([readonly]) {
282
			border-width: 0 0 1px 0;
282 283
			border-bottom-color: $button-background;
283 284
		}
284 285
	}
285
-