Don't use "!important" on animated properties on userbar items (#3447)

They don't seem to be necessary (the .is-active properties surely have higher specificity than the ones that set initial state), and they cause a rendering bug on Firefox 52. Fixes #3443
pull/3440/merge
Matt Westcott 2017-03-15 21:54:06 +00:00 zatwierdzone przez Thibaud Colas
rodzic a2d7b133fc
commit 55eaa0c137
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -330,6 +330,6 @@ $positions: (
// Active state for the list items comes last.
.#{$namespace}-userbar.is-active .#{$namespace}-userbar__item {
transform: translateY(0) !important;
opacity: 1 !important;
transform: translateY(0);
opacity: 1;
}