mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-25 09:04:48 +00:00
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:
parent
a2d7b133fc
commit
55eaa0c137
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue