From d028b6f4feb16d55dc2c91f6faf8c193ed32b1bc Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 11 Oct 2023 07:38:25 +0300 Subject: [PATCH] tweak... Signed-off-by: Alex A. Naanou --- experiments/outline-editor/editor.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/experiments/outline-editor/editor.css b/experiments/outline-editor/editor.css index ca50f06..3eacb3c 100755 --- a/experiments/outline-editor/editor.css +++ b/experiments/outline-editor/editor.css @@ -277,12 +277,16 @@ editor .outline [tabindex]:focus { /* Quote... */ .editor .outline .quote>span, .editor .outline .quote>textarea { - --item-padding-ratio: 0.7; --indent: 1rem; + --margin: 0.7rem; + --item-padding-ratio: 0.7; /* XXX for some reason if this is not set here it will not see the new --item-padding-ratio */ --item-padding: calc(1rem * var(--item-padding-ratio)); + margin-top: var(--margin); + margin-bottom: var(--margin); + padding: var(--item-padding) 1.5rem; color: rgba(0,0,0,0.8);