-
+
diff --git a/src/styles.css b/src/styles.css
index d1deb07..0d4e20c 100644
--- a/src/styles.css
+++ b/src/styles.css
@@ -2037,6 +2037,27 @@ select option {
cursor: not-allowed;
}
+/* Update-banner download progress — sits between the message and
+ the button, fills as the update download runs. */
+.update-banner-progress-wrap {
+ flex: 1;
+ margin: 0 15px;
+}
+
+.update-banner-progress-track {
+ background: rgba(0, 0, 0, 0.3);
+ border-radius: 4px;
+ height: 8px;
+ overflow: hidden;
+}
+
+.update-banner-progress-bar {
+ background: #fff;
+ height: 100%;
+ width: 0%;
+ transition: width 0.3s ease-out;
+}
+
.update-modal {
max-width: 680px;
border: 1px solid rgba(255, 255, 255, 0.08);