diff --git a/html/upgrade.html b/html/upgrade.html index abd54c6..17b7efe 100644 --- a/html/upgrade.html +++ b/html/upgrade.html @@ -79,7 +79,7 @@ @@ -104,6 +104,42 @@ color: #666; margin-bottom: 1rem; } + .progress-container { + margin: 20px 0; + background: #f0f0f0; + border-radius: 4px; + overflow: hidden; + } + .progress-bar { + width: 0; + height: 20px; + background: #4CAF50; + transition: width 0.3s ease-in-out; + text-align: center; + line-height: 20px; + color: white; + } + .status { + margin-top: 20px; + padding: 10px; + border-radius: 4px; + display: none; + } + .status.success { + background: #e8f5e9; + color: #2e7d32; + } + .status.error { + background: #ffebee; + color: #c62828; + } + .warning { + background: #fff3e0; + color: #e65100; + padding: 15px; + border-radius: 4px; + margin-bottom: 20px; + }