mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
81903bb79d
[Web] Add opportunistic prompts for third party references GitOrigin-RevId: d794df16781d0db707423f23ab12f40a13604907
29 lines
531 B
Text
29 lines
531 B
Text
/* Animation keyframes */
|
|
@keyframes slide-in {
|
|
0% {
|
|
transform: translateY(25%);
|
|
opacity: 0;
|
|
bottom: 12px;
|
|
}
|
|
100% {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
bottom: 16px;
|
|
}
|
|
}
|
|
|
|
.fade-slide-in {
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease; /* Smooth opacity transition */
|
|
animation: slide-in 0.3s ease-in-out forwards;
|
|
animation-delay: 300ms;
|
|
}
|
|
|
|
.tpr-editor-prompt-container {
|
|
position: absolute;
|
|
z-index: 1;
|
|
bottom: 16px;
|
|
right: 16px;
|
|
width: 90%;
|
|
max-width: @popover-dark-max-width;
|
|
}
|