Merge pull request #4669 from humhub/fix/4668

Fix #4668: table-responsive tables do not overflow due to default word break style
This commit is contained in:
Lucas Bartholemy 2020-11-30 09:26:22 +01:00 committed by GitHub
commit 5083c093f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 1 deletions

View File

@ -1,6 +1,10 @@
HumHub Changelog
================
1.7.2 (Unreleased)
-------------------------
- Fix #4668: table-responsive tables do not overflow due to default word break style
1.7.1 (November 27, 2020)
-------------------------

View File

@ -137,4 +137,12 @@ span.likeLinkContainer .like.disabled, span.likeLinkContainer .unlike.disabled {
font-size:13px;
}
.table-responsive {
word-wrap: normal;
overflow-wrap: normal;
word-break: normal;
-moz-hyphens: none;
hyphens: none;
}

File diff suppressed because one or more lines are too long