Dev build 2026-06-12 23:37

This commit is contained in:
Ivo Oskamp 2026-06-12 23:37:14 +02:00
parent 697c893a2f
commit f93703bcc3
3 changed files with 7 additions and 2 deletions

View File

@ -275,7 +275,7 @@ html, body { height: 100%; background: var(--bg); color: var(--text); font-famil
/* ── Visual editing pane ── */ /* ── Visual editing pane ── */
.visual-pane { flex: 1; overflow-y: auto; background: var(--bg); } .visual-pane { flex: 1; overflow-y: auto; background: var(--bg); }
.visual-pane .ProseMirror { .visual-pane .ProseMirror {
max-width: 42rem; margin: 0 auto; padding: 2.5rem 1.5rem 6rem; max-width: 70rem; width: 100%; margin: 0 auto; padding: 2.5rem 3rem 6rem;
outline: none; color: var(--text); outline: none; color: var(--text);
font-family: var(--serif, Georgia, serif); font-size: 1.05rem; line-height: 1.7; font-family: var(--serif, Georgia, serif); font-size: 1.05rem; line-height: 1.7;
} }

View File

@ -10,7 +10,7 @@ from __future__ import annotations
from changelog import CHANGELOG from changelog import CHANGELOG
BUILD = 2 BUILD = 3
def _release_version() -> str: def _release_version() -> str:

View File

@ -1,5 +1,10 @@
# Develop Changelog # Develop Changelog
## 2026-06-12 — Visual editor: wider editing column
### Changed
- Widened the Visual (WYSIWYG) editing column from the reader's 42rem reading width to 70rem with more horizontal padding — the reading width was comfortable to read but too narrow to edit in. `static/editor.css` (`.visual-pane .ProseMirror`). CSS only; no bundle rebuild.
## 2026-06-12 — Visual editor: broaden schema & fidelity check against real library content ## 2026-06-12 — Visual editor: broaden schema & fidelity check against real library content
### Changed ### Changed