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

This commit is contained in:
2026-07-24 12:21:44 -04:00
parent c4ad6e8ac9
commit 22754f6ae8
5 changed files with 27 additions and 5 deletions
+6 -2
View File
@@ -108,7 +108,9 @@ body{
.block__sub{color:var(--muted);font-size:.96rem;margin:14px 0 0;max-width:34ch}
/* ---------- TOPICS (accordion) ---------- */
.topics{list-style:none;margin:0;padding:0;border-top:1px solid var(--hair)}
/* min-width:0 lets this 1fr grid item shrink instead of being widened to a
table's intrinsic width (which would push sibling text past the card). */
.topics{list-style:none;margin:0;padding:0;border-top:1px solid var(--hair);min-width:0}
.topic{border-bottom:1px solid var(--hair)}
.topic__head{
width:100%;background:none;border:0;cursor:pointer;text-align:left;
@@ -147,7 +149,9 @@ body{
padding:2px 4px 30px 0;max-width:62ch;
display:flex;flex-direction:column;gap:20px;
}
.prose{color:var(--ink-soft);font-size:1.03rem}
/* min-width:0 so a wide table can't stretch this flex item; overflow-x lets a
genuinely too-wide table scroll within the prose box rather than clip text. */
.prose{color:var(--ink-soft);font-size:1.03rem;min-width:0;overflow-x:auto}
.prose p{margin:0 0 .8em}
.prose p:last-child{margin-bottom:0}
.prose strong{color:var(--ink);font-weight:600}