From f9357faa920143d275734cd28675afc5f8d93a63 Mon Sep 17 00:00:00 2001 From: dvirlabs Date: Tue, 24 Mar 2026 12:55:14 +0200 Subject: [PATCH] Add missing quill-dark.css stylesheet --- frontend/src/styles/quill-dark.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 frontend/src/styles/quill-dark.css diff --git a/frontend/src/styles/quill-dark.css b/frontend/src/styles/quill-dark.css new file mode 100644 index 0000000..8d13266 --- /dev/null +++ b/frontend/src/styles/quill-dark.css @@ -0,0 +1,28 @@ +.ql-container { + background-color: #1e1e1e !important; + color: white !important; + border: 1px solid #444 !important; + border-radius: 6px; +} + +.ql-editor { + min-height: 100px; + color: white !important; + font-size: 14px; + font-family: sans-serif; +} + +.ql-toolbar { + background-color: #2c2c2c !important; + border: 1px solid #444 !important; + border-radius: 6px 6px 0 0; +} + +.ql-toolbar .ql-picker, +.ql-toolbar .ql-picker-label, +.ql-toolbar .ql-stroke, +.ql-toolbar .ql-fill { + color: white !important; + stroke: white !important; + fill: white !important; +}