Browse Source

Merge pull request #13517 from vvlladd28/bug/firefox/animanition-detail-button

Fixed details panel button freeze midway in firefox
pull/13547/head
Igor Kulikov 1 year ago
committed by GitHub
parent
commit
7f577d48ef
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 24
      ui-ngx/src/scss/animations.scss

24
ui-ngx/src/scss/animations.scss

@ -16,15 +16,23 @@
@keyframes tbMoveFromTopFade {
from {
opacity: 0;
transform: translate(0, -100%);
}
to {
opacity: 1;
transform: translate(0, 0);
}
}
@keyframes tbMoveToTopFade {
from {
opacity: 1;
transform: translate(0, 0);
}
to {
opacity: 0;
transform: translate(0, -100%);
}
}
@ -32,15 +40,23 @@
@keyframes tbMoveFromBottomFade {
from {
opacity: 0;
transform: translate(0, 100%);
}
to {
opacity: 1;
transform: translate(0, 0);
}
}
@keyframes tbMoveToBottomFade {
from {
opacity: 1;
transform: translate(0, 0);
}
to {
opacity: 0;
transform: translate(0, 150%);
}
}

Loading…
Cancel
Save