From d3a0c626faa2ba6e81d88b9c04d99594f1efae91 Mon Sep 17 00:00:00 2001 From: awsr <43862868+awsr@users.noreply.github.com> Date: Thu, 1 Jan 2026 14:35:59 -0800 Subject: [PATCH] Minor style update --- javascript/_simpleProgressBar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/_simpleProgressBar.js b/javascript/_simpleProgressBar.js index b900573cb..fc5b0c7e8 100644 --- a/javascript/_simpleProgressBar.js +++ b/javascript/_simpleProgressBar.js @@ -12,7 +12,7 @@ class SimpleProgressBar { constructor(monitoredSet) { this.#monitoredSet = monitoredSet; // This is required because incrementing a variable with a class method turned out to not be an atomic operation - this.#container.style.cssText = 'position:relative;width:100%;background-color:hsla(0,0%,36%,0.3);height:1.2rem;margin:0;padding:0;display:none;' + this.#container.style.cssText = 'position:relative;overflow:hidden;border-radius:var(--sd-border-radius);width:100%;background-color:hsla(0,0%,36%,0.3);height:1.2rem;margin:0;padding:0;display:none;' this.#progress.style.cssText = 'position:absolute;left:0;height:100%;width:0;transition:width 200ms;' this.#progress.style.backgroundColor = 'hsla(110, 32%, 35%, 0.80)'; // alt: '#27911d' this.#textDiv.style.cssText = 'position:relative;margin:auto;width:max-content;height:100%;';