From f93703bcc3b6ecfd4d0368e1ef3796093924d5ae Mon Sep 17 00:00:00 2001 From: Ivo Oskamp Date: Fri, 12 Jun 2026 23:37:14 +0200 Subject: [PATCH] Dev build 2026-06-12 23:37 --- containers/novela/static/editor.css | 2 +- containers/novela/version.py | 2 +- docs/changelog-develop.md | 5 +++++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/containers/novela/static/editor.css b/containers/novela/static/editor.css index 5bc2845..1bd0543 100644 --- a/containers/novela/static/editor.css +++ b/containers/novela/static/editor.css @@ -275,7 +275,7 @@ html, body { height: 100%; background: var(--bg); color: var(--text); font-famil /* ── Visual editing pane ── */ .visual-pane { flex: 1; overflow-y: auto; background: var(--bg); } .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); font-family: var(--serif, Georgia, serif); font-size: 1.05rem; line-height: 1.7; } diff --git a/containers/novela/version.py b/containers/novela/version.py index cbf3acb..ff2a190 100644 --- a/containers/novela/version.py +++ b/containers/novela/version.py @@ -10,7 +10,7 @@ from __future__ import annotations from changelog import CHANGELOG -BUILD = 2 +BUILD = 3 def _release_version() -> str: diff --git a/docs/changelog-develop.md b/docs/changelog-develop.md index cf31669..e7082ac 100644 --- a/docs/changelog-develop.md +++ b/docs/changelog-develop.md @@ -1,5 +1,10 @@ # 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 ### Changed