mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
scale-in animation for column action menu, closes #1039
This commit is contained in:
parent
66120a7a1c
commit
bf82b3d6a6
2 changed files with 19 additions and 0 deletions
|
|
@ -453,3 +453,20 @@ svg.dropdown-menu-icon {
|
|||
position: relative;
|
||||
top: 1px;
|
||||
}
|
||||
|
||||
.anim-scale-in {
|
||||
animation-name: scale-in;
|
||||
animation-duration: 0.15s;
|
||||
animation-timing-function: cubic-bezier(0.2, 0, 0.13, 1.5);
|
||||
}
|
||||
|
||||
@keyframes scale-in {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scale(0.6);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue