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
This commit is contained in:
Matt Westcott 2017-03-15 21:54:06 +00:00 committed by Thibaud Colas
parent a2d7b133fc
commit 55eaa0c137

View file

@ -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;
}