1
0
mirror of https://github.com/sui-feng-cb/AzurLaneAutoScript1.git synced 2026-07-24 14:13:33 +08:00

Feat: visualize instance running state in sidebar

This commit is contained in:
positnuec
2026-07-22 08:00:30 +08:00
parent 26f8f112f5
commit a64efd6134
4 changed files with 55 additions and 1 deletions

View File

@@ -331,6 +331,20 @@ pre.rich-traceback-code {
}
}
/* State animations for aside instance icons */
.aside-icon-warning {
animation: aside-icon-blink 1s ease-in-out infinite;
}
.aside-icon-updating {
animation: aside-icon-blink 1.5s ease-in-out infinite;
}
@keyframes aside-icon-blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}
#pywebio-scope-contents {
margin-top: 0;
overflow-y: auto;