From 25e86fd381a908ac0e6be44ec1398d0c43647cb4 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Sat, 9 Nov 2024 20:54:59 +0200 Subject: [PATCH] web/timeline: revert overflow wrap for tables --- web/src/ui/timeline/content/index.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/src/ui/timeline/content/index.css b/web/src/ui/timeline/content/index.css index b923f1a..bd00295 100644 --- a/web/src/ui/timeline/content/index.css +++ b/web/src/ui/timeline/content/index.css @@ -99,6 +99,11 @@ div.html-body { } } + table { + /* Message content has overflow wrap anywhere, but for tables that's not very nice */ + overflow-wrap: initial; + } + blockquote { border-left: 2px solid var(--blockquote-border-color); padding-left: .5rem;