Jul 24 - Update Rich-text editor to enhance table editor 7

This commit is contained in:
2026-07-24 15:43:46 -04:00
parent a321a881d8
commit d3e9037422
2 changed files with 6 additions and 2 deletions
+4 -1
View File
@@ -161,7 +161,10 @@ body{
win over these defaults). table-layout:fixed honours the authored widths;
max-width keeps a wide table from overflowing the column. */
.prose table{border-collapse:collapse;table-layout:fixed;max-width:100%;margin:1em 0;font-size:.95rem}
.prose td,.prose th{border:1px solid var(--hair);padding:.5rem .65rem;text-align:left;vertical-align:top;word-wrap:break-word}
/* vertical-align:middle matches quill-table-better's cell default, so a cell
left at the default (which stores no inline style) looks the same here as in
the editor. Cells set to top/bottom carry an inline style that overrides. */
.prose td,.prose th{border:1px solid var(--hair);padding:.5rem .65rem;text-align:left;vertical-align:middle;word-wrap:break-word}
.prose th{background:rgba(0,0,0,.03);color:var(--ink);font-weight:600}
/* Cell alignment is Quill's align class on the cell's <p> (see admin editor). */
.prose .ql-align-center{text-align:center}