]> source.dussan.org Git - gitea.git/commitdiff
Make loading animation less aggressive (#28955)
authorYarden Shoham <git@yardenshoham.com>
Sat, 27 Jan 2024 12:27:37 +0000 (14:27 +0200)
committerGitHub <noreply@github.com>
Sat, 27 Jan 2024 12:27:37 +0000 (20:27 +0800)
The current animation loops in a very fast manner, causing a slight
feeling of uncomfortableness. This change slows it a bit for a smoother
experience.

# Before

![before](https://github.com/go-gitea/gitea/assets/20454870/215a722d-feb4-4643-819d-c37a620c5e48)

# After

![after](https://github.com/go-gitea/gitea/assets/20454870/7acb1fab-9157-4f4d-8cc7-45fea0234b47)

Signed-off-by: Yarden Shoham <git@yardenshoham.com>
web_src/css/modules/animations.css

index cac824d87d66d5a76c38d18a80540febb925516b..87eb6a75cf071f69d806602db95bf892185bf7e2 100644 (file)
@@ -22,7 +22,7 @@
   height: min(4em, 66.6%);
   aspect-ratio: 1;
   transform: translate(-50%, -50%);
-  animation: isloadingspin 500ms infinite linear;
+  animation: isloadingspin 1000ms infinite linear;
   border-width: 4px;
   border-style: solid;
   border-color: var(--color-secondary) var(--color-secondary) var(--color-secondary-dark-8) var(--color-secondary-dark-8);