]> source.dussan.org Git - gitea.git/commitdiff
Make actions animation rotate counterclockwisely (#29378)
authorwxiaoguang <wxiaoguang@gmail.com>
Sun, 25 Feb 2024 13:37:35 +0000 (21:37 +0800)
committerGitHub <noreply@github.com>
Sun, 25 Feb 2024 13:37:35 +0000 (21:37 +0800)
Because the icon is:

![image](https://github.com/go-gitea/gitea/assets/2114189/be7e78ab-bc64-46d9-8259-fd7f0037471a)

So it must rotate counterclockwisely

web_src/js/components/RepoActionView.vue

index c4a7389bc553ac6213754569953b2270896b7191..38018485191272b537518ef2cfd74a93b42cf2a9 100644 (file)
@@ -760,7 +760,7 @@ export function initRepositoryActionView() {
 
 @keyframes job-status-rotate-keyframes {
   100% {
-    transform: rotate(360deg);
+    transform: rotate(-360deg);
   }
 }