Merge pull request #10 from mvillis/add-animate-dependencies
added missing animate.css dependencies
This commit is contained in:
15
etherpad/src/static/css/animate/fadeInLeft.css
Executable file
15
etherpad/src/static/css/animate/fadeInLeft.css
Executable file
@@ -0,0 +1,15 @@
|
||||
@keyframes fadeInLeft {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(-100%, 0, 0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInLeft {
|
||||
animation-name: fadeInLeft;
|
||||
}
|
||||
15
etherpad/src/static/css/animate/fadeInRight.css
Executable file
15
etherpad/src/static/css/animate/fadeInRight.css
Executable file
@@ -0,0 +1,15 @@
|
||||
@keyframes fadeInRight {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(100%, 0, 0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInRight {
|
||||
animation-name: fadeInRight;
|
||||
}
|
||||
8
etherpad/src/static/css/animate/fadeOut.css
Executable file
8
etherpad/src/static/css/animate/fadeOut.css
Executable file
@@ -0,0 +1,8 @@
|
||||
@keyframes fadeOut {
|
||||
from {opacity: 1;}
|
||||
100% {opacity: 0;}
|
||||
}
|
||||
|
||||
.fadeOut {
|
||||
animation-name: fadeOut;
|
||||
}
|
||||
Reference in New Issue
Block a user