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 <ahmad.af.farhat@gmail.com>
This commit is contained in:
Lars Kiesow 2020-12-05 20:39:13 +01:00 committed by GitHub
parent 0c8c102f4a
commit f2fc803d2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@
}
#recording-table .edit_hover_class {
word-break: break-all;
word-break: break-word;
white-space: normal;
}