Lengthen the header speed graph

Extend the sparkline to 140 pixels and reclaim the same width from the zero-speed label area so the header control keeps its existing overall footprint.
This commit is contained in:
Sucukdeluxe
2026-08-26 15:10:48 +02:00
parent a087e11b52
commit a4010d8984
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -596,8 +596,8 @@ describe("bandwidth chart palette", () => {
it("uses the spare zero-speed label space for a longer sparkline", () => {
const css = readFileSync(new URL("../src/renderer/styles.css", import.meta.url), "utf8");
expect(css).toMatch(/\.speed-sparkline-canvas\s*\{[^}]*width:\s*128px;/s);
expect(css).toMatch(/\.speed-sparkline-value\s*\{[^}]*min-width:\s*54px;/s);
expect(css).toMatch(/\.speed-sparkline-canvas\s*\{[^}]*width:\s*140px;/s);
expect(css).toMatch(/\.speed-sparkline-value\s*\{[^}]*min-width:\s*42px;/s);
});
it("aligns the idle speed line to one physical pixel at every display scale", () => {