1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-21 07:06:39 +02:00

fixed tip transition animation in safari

This commit is contained in:
antelle 2017-11-26 13:35:43 +01:00
parent 32dcb31085
commit 577d23e212

View File

@ -5,6 +5,7 @@
white-space: nowrap;
z-index: $z-index-no-modal;
pointer-events: none;
opacity: 1;
@include nomobile { animation: tip $tip-transition-in; }
@include common-dropdown;
&.tip--fast, &.tip--fast:before, &.tip--fast:after {
@ -84,5 +85,5 @@
}
@keyframes tip {
from { color: transparent; background-color: transparent; border-color: transparent; box-shadow: none; }
from { opacity: 0; }
}