Fix long words in comment form (#5581)

* Fix long words in comment form

* Update CHANGELOG_DEV.md

Co-authored-by: Lucas Bartholemy <luke-@users.noreply.github.com>
This commit is contained in:
Yuriy Bakhtin 2022-03-02 20:59:07 +03:00 committed by GitHub
parent 0fcb165b29
commit c47d9f219d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View File

@ -38,4 +38,5 @@
- Enh #4823: Removed CHTML and CActiveForm classes as well as usages (plus refactoring) - Enh #4823: Removed CHTML and CActiveForm classes as well as usages (plus refactoring)
- Fix #5449: File - Update info after `setStoredFileContent` and `setStoredFile` - Fix #5449: File - Update info after `setStoredFileContent` and `setStoredFile`
- Enh #5127: LDAP: Reset mapping for single user only - Enh #5127: LDAP: Reset mapping for single user only
- Fix #5581: Fix long words in comment form
- Fix #5578: Improved `rememberMe` parameter handling for thirdparty auth provider - Fix #5578: Improved `rememberMe` parameter handling for thirdparty auth provider

View File

@ -101,6 +101,9 @@
.field-comment-message, .field-post-message { .field-comment-message, .field-post-message {
flex-grow: 1; flex-grow: 1;
flex-basis: min-content; flex-basis: min-content;
[data-ui-markdown] {
word-break: break-word !important;
}
} }
.form-group, .help-block { .form-group, .help-block {
margin:0; margin:0;

File diff suppressed because one or more lines are too long