Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorVinicius Reis <vinicius.reis@nextcloud.com>2022-05-26 17:46:30 +0300
committerVinicius Reis <vinicius.reis@nextcloud.com>2022-05-26 17:46:30 +0300
commit242cc9c74cae355e6620349904f1cbeaca600075 (patch)
tree25578272323b260a5c7561717c4c601db9697559 /css
parentf5429f8cc9c08e148b0c93b6765a9d285239b73f (diff)
🚸 (#2345): remove menubar flickering
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
Diffstat (limited to 'css')
-rw-r--r--css/style.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/css/style.scss b/css/style.scss
index aacfecec7..9447fe491 100644
--- a/css/style.scss
+++ b/css/style.scss
@@ -60,3 +60,16 @@ li.ProseMirror-selectednode:after {
.animation-rotate {
animation: rotate var(--animation-duration, 0.8s) linear infinite;
}
+
+// from https://github.com/animate-css/animate.css/blob/main/source/fading_entrances/fadeInDown.css
+@keyframes fadeInDown {
+ from {
+ opacity: 0;
+ transform: translate3d(0, -100%, 0);
+ }
+
+ to {
+ opacity: 1;
+ transform: translate3d(0, 0, 0);
+ }
+}