diff --git a/allstarr/wwwroot/index.html b/allstarr/wwwroot/index.html index 3fc764a..d21aae3 100644 --- a/allstarr/wwwroot/index.html +++ b/allstarr/wwwroot/index.html @@ -292,6 +292,43 @@ to { transform: translateX(0); opacity: 1; } } + .restart-overlay { + display: none; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: var(--bg-primary); + z-index: 9999; + justify-content: center; + align-items: center; + flex-direction: column; + gap: 20px; + } + + .restart-overlay.active { + display: flex; + } + + .restart-overlay .spinner-large { + width: 48px; + height: 48px; + border: 3px solid var(--border); + border-top-color: var(--accent); + border-radius: 50%; + animation: spin 1s linear infinite; + } + + .restart-overlay h2 { + color: var(--text-primary); + font-size: 1.5rem; + } + + .restart-overlay p { + color: var(--text-secondary); + } + .modal { display: none; position: fixed; @@ -784,6 +821,13 @@ + +
+
+

Restarting Container

+

Applying configuration changes...

+
+