0.122.11 release notes: correct impact (restores Windows/Linux frameless tiny-header padding)

This commit is contained in:
Human 2026-06-25 09:56:39 -07:00
parent ce8331f31e
commit f382cdc10c

View file

@ -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).