fix: enlarge overview activity summaries

This commit is contained in:
2026-08-21 17:40:33 +09:00
parent 8f54fa2a00
commit 6f42f23d2b
2 changed files with 16 additions and 0 deletions
@@ -141,6 +141,10 @@
white-space: pre-line;
}
.activity-summary {
font-size: 14px;
}
.task-reminder-summary {
white-space: nowrap;
overflow: hidden;
@@ -357,6 +357,18 @@ Deno.test("Worker Console uses protocol observation events without transcript fe
);
});
Deno.test("Worker Console overview activity summaries use 14px text", async () => {
const consoleLine = await Deno.readTextFile(
new URL("./ConsoleLineItem.svelte", import.meta.url),
);
assert(
consoleLine.includes(".activity-summary {") &&
consoleLine.includes("font-size: 14px;"),
"Overview activity summaries such as ran command counts should render at 14px",
);
});
Deno.test("Worker Console renders markdown only for message rows", async () => {
const consoleLine = await Deno.readTextFile(
new URL("./ConsoleLineItem.svelte", import.meta.url),