From 3e4fc4b00330b975838b601477b9b9693e5ae66c Mon Sep 17 00:00:00 2001 From: Chase Naples Date: Sun, 14 Sep 2025 01:26:42 -0400 Subject: [PATCH] Zelos: make workspace comment font weight normal for consistency\n\n- Add font-weight: normal to workspace comment textarea and preview text\n- Aligns with Zelos .blocklyTextInputBubble textarea rule\n\nFixes google/blockly#9348 --- core/comments/comment_view.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/comments/comment_view.ts b/core/comments/comment_view.ts index b1cd628f8dd..29b68b1e882 100644 --- a/core/comments/comment_view.ts +++ b/core/comments/comment_view.ts @@ -672,6 +672,8 @@ css.register(` border: 1px solid var(--commentBorderColour); box-sizing: border-box; display: block; + /* Match Zelos block comment bubbles: do not inherit bold label weight */ + font-weight: normal; outline: 0; padding: 5px; resize: none; @@ -713,6 +715,8 @@ css.register(` .blocklyComment .blocklyCommentPreview.blocklyText { fill: #000; dominant-baseline: middle; + /* Ensure preview text uses normal weight for consistency with textarea */ + font-weight: normal; visibility: hidden; }