From 9a2e30b9c8c185bf047646ea0abf0c406f85c3ed Mon Sep 17 00:00:00 2001 From: Zoltan Hosszu Date: Wed, 4 Feb 2026 10:58:13 +0100 Subject: [PATCH] Regression fixes --- app/assets/stylesheets/lexxy.css | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/lexxy.css b/app/assets/stylesheets/lexxy.css index 7712aeef9..037bcd804 100644 --- a/app/assets/stylesheets/lexxy.css +++ b/app/assets/stylesheets/lexxy.css @@ -18,6 +18,7 @@ lexxy-toolbar { border-color: var(--lexxy-border-color); + gap: 0; } .lexxy-editor__toolbar-button { @@ -95,10 +96,14 @@ text-wrap: balance; } - p { + p:has(+ p) { margin: 0; } + ol, ul { + padding-inline-start: 1ch; + } + blockquote { border-inline-start: 0.25em solid var(--color-ink-lighter); padding-block: 0; @@ -121,5 +126,13 @@ th:not([class*="selected"], [data-action="delete"], [data-action="toggle"]) { background-color: var(--color-ink-lightest); } td:not([class*="selected"], [data-action="delete"], [data-action="toggle"]) { background-color: var(--color-canvas); } } + + .attachment { + margin-inline: auto; + } + } + + .attachment { + margin-inline: 0; } }