Projet

Général

Profil

0001-scss-forms-inputs-merge-transition-properties-38319.patch

Thomas Jund, 09 décembre 2019 16:17

Télécharger (953 octets)

Voir les différences:

Subject: [PATCH] scss: forms inputs: merge transition properties (#38319)

 static/includes/_forms.scss | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
static/includes/_forms.scss
156 156
	margin: 0.2em 0px;
157 157
	padding: 0.4em 0.7em 0.4em 0.7em;
158 158
	max-width: 100%;
159
	transition: background 0.5s ease;
160
	transition: color 0.5s ease;
161
	transition: border 0.5s ease;
159
	transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
162 160
	&:focus:not([readonly]) {
163 161
		background-color: $widget-focus-background;
164 162
		border: $widget-focus-border;
165
-