From 1c664523a6ab8cf1de99a52e471d6d98954bd945 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 14 Mar 2026 00:15:00 +0100 Subject: [PATCH] Add styles for modal selection preview --- src/index.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/index.css b/src/index.css index f1e3ff8..3737298 100644 --- a/src/index.css +++ b/src/index.css @@ -993,6 +993,19 @@ body:not([data-theme="light"]) .markdown-preview { color: var(--muted); } +.modal__selection-preview { + max-height: 180px; + overflow: auto; + white-space: pre-wrap; + word-break: break-word; + border-radius: 12px; + border: 1px solid var(--border); + background: var(--bg-input); + color: var(--ink); + padding: 12px 14px; + font-size: 0.9rem; +} + .modal__actions { display: flex; justify-content: flex-end;