Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions core/comments/comment_view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}

Expand Down
Loading