From 630d3f929ec23e2eac683e6df081d4023a54ab8f Mon Sep 17 00:00:00 2001 From: wxiaoguang Date: Sun, 25 Feb 2024 21:37:35 +0800 Subject: [PATCH] Make actions animation rotate counterclockwisely (#29378) Because the icon is: ![image](https://github.com/go-gitea/gitea/assets/2114189/be7e78ab-bc64-46d9-8259-fd7f0037471a) So it must rotate counterclockwisely (cherry picked from commit ea164aba4b697aa08e4d20d896a8f318c09a6523) --- web_src/js/components/RepoActionView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_src/js/components/RepoActionView.vue b/web_src/js/components/RepoActionView.vue index c4a7389bc5..3801848519 100644 --- a/web_src/js/components/RepoActionView.vue +++ b/web_src/js/components/RepoActionView.vue @@ -760,7 +760,7 @@ export function initRepositoryActionView() { @keyframes job-status-rotate-keyframes { 100% { - transform: rotate(360deg); + transform: rotate(-360deg); } }