From f382cdc10c8cd7c4d54926f921d355425576c395 Mon Sep 17 00:00:00 2001 From: Human Date: Thu, 25 Jun 2026 09:56:39 -0700 Subject: [PATCH] 0.122.11 release notes: correct impact (restores Windows/Linux frameless tiny-header padding) --- release-notes/0.122.11.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/release-notes/0.122.11.md b/release-notes/0.122.11.md index bf72ef8..9e2b63e 100644 --- a/release-notes/0.122.11.md +++ b/release-notes/0.122.11.md @@ -1,7 +1,10 @@ -# 0.122.11 — Stylesheet comment fix +# 0.122.11 — Restore frameless tiny-header padding (Windows/Linux) -Fixes a malformed comment in `styles.css`. A code comment describing the -frameless tiny-header rules contained the text `mod-*/is-frameless`; the `*/` -inside it is the CSS comment terminator, so the comment ended early and a few -stray words leaked into the stylesheet as invalid CSS. Reworded the comment so -it stays intact. No change to any rule, layout, or behavior. +Fixes a malformed comment in `styles.css`. A code comment above the frameless +tiny-header rules contained the text `mod-*/is-frameless`; the `*/` inside it is +the CSS comment terminator, so the comment closed early. The leftover text then +ran into the next rule's selector and corrupted it, causing CSS parsers to +**silently drop the frameless-window right-padding on the tiny header under +Windows and Linux**. Reworded the comment so it stays intact, which restores that +padding. No visible change on macOS (its padding rule is a separate block and was +never affected).