Projet

Général

Profil

0001-scss-forms-button-merge-transtions-properties-38267.patch

Thomas Jund (congés, retour le 29/04), 06 décembre 2019 16:21

Télécharger (885 octets)

Voir les différences:

Subject: [PATCH] scss: forms button: merge transtions properties (#38267)

 static/includes/_forms.scss | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
static/includes/_forms.scss
88 88
	cursor: pointer;
89 89
	border: $button-border;
90 90
	border-radius: $button-border-radius;
91
	transition: background 0.5s ease;
92
	transition: color 0.5s ease;
93
	transition: border 0.5s ease;
91
	transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
94 92
	margin-right: 1.5em;
95 93
	vertical-align: middle;
96 94
	box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.21);
97
-