This commit is contained in:
Tomas Dvorak
2025-10-21 15:02:05 +02:00
parent 68e69e00cc
commit 63700eedb2
103 changed files with 12442 additions and 446 deletions
+53
View File
@@ -1,5 +1,58 @@
/* Custom Rich Editor Enhancements */
/* ============================================
FORCE QUILL VISIBILITY - CRITICAL FIX
============================================ */
/* Ensure Quill editor is ALWAYS visible - override ALL CSS */
.quill,
.ql-toolbar,
.ql-toolbar.ql-snow,
.ql-container,
.ql-container.ql-snow,
.ql-editor {
display: block !important;
visibility: visible !important;
opacity: 1 !important;
position: relative !important;
width: 100% !important;
}
.ql-toolbar.ql-snow {
min-height: 42px !important;
height: auto !important;
}
.ql-container.ql-snow {
min-height: 200px !important;
height: auto !important;
}
.ql-editor {
min-height: 200px !important;
height: auto !important;
overflow-y: auto !important;
}
/* Override Chakra UI potential conflicts - ALL wrapper classes */
.chakra-ui-light .ql-container,
.chakra-ui-light .ql-editor,
.css-8opgp6 .quill,
.css-8opgp6 .ql-toolbar,
.css-8opgp6 .ql-container,
.css-8opgp6 .ql-editor,
.css-ele4hk .quill,
.css-ele4hk .ql-toolbar,
.css-ele4hk .ql-container,
.css-ele4hk .ql-editor,
[class^="css-"] .quill,
[class^="css-"] .ql-toolbar,
[class^="css-"] .ql-container,
[class^="css-"] .ql-editor {
display: block !important;
visibility: visible !important;
opacity: 1 !important;
}
/* Quill Toolbar Styling */
.ql-toolbar.ql-snow {
background: linear-gradient(to bottom, #fafafa 0%, #f5f5f5 100%);