From f2fc803d2efa53ee8a29f848ac685624866c27b8 Mon Sep 17 00:00:00 2001 From: Lars Kiesow Date: Sat, 5 Dec 2020 20:39:13 +0100 Subject: [PATCH] Improce Word Wrapping in Recording Table (#2328) Using `break-all` for word-wrapping in the recording table can cause awkward word wrapping. Using `break-word` should mostly avoid that while still ensuring that words too long to properly fit are wrapped. Co-authored-by: Ahmad Farhat --- app/assets/stylesheets/rooms.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/rooms.scss b/app/assets/stylesheets/rooms.scss index fea9a1e5..cdcb5b6b 100644 --- a/app/assets/stylesheets/rooms.scss +++ b/app/assets/stylesheets/rooms.scss @@ -115,7 +115,7 @@ } #recording-table .edit_hover_class { - word-break: break-all; + word-break: break-word; white-space: normal; }