Projet

Général

Profil

0001-style-avoid-flicker-on-icon-hover-28364.patch

Frédéric Péters, 27 novembre 2018 07:40

Télécharger (928 octets)

Voir les différences:

Subject: [PATCH] style: avoid flicker on icon:hover (#28364)

 gadjo/static/css/_wcs.scss | 2 ++
 1 file changed, 2 insertions(+)
gadjo/static/css/_wcs.scss
54 54
	@each $action in $actions {
55 55
		&.#{$action} a {
56 56
			background: url(icons/action-#{$action}.small.#{$string-color}.png) center center no-repeat;
57
			background-image: url(icons/action-#{$action}.small.#{$string-color}.png),
58
					  url(icons/action-#{$action}.hover.png);
57 59
			&:hover {
58 60
				background-image: url(icons/action-#{$action}.hover.png);
59 61
			}
60
-