Fix: In lists, when an item text is displayed on multiple lines, the … (#7174)

* Fix: In lists, when an item text is displayed on multiple lines, the lines below are not lining up with the first one

* Add PR ID to changelog

---------

Co-authored-by: Lucas Bartholemy <luke-@users.noreply.github.com>
This commit is contained in:
Marc Farré 2024-08-20 14:38:58 +01:00 committed by GitHub
parent 0464af1398
commit 03210414e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 6 deletions

View File

@ -18,6 +18,7 @@ HumHub Changelog
- Fix #7151: Disable new post's required validation for `message` when post has attached files
- Enh #7106: Enable option for non-member users of a space to create posts
- Enh #7160: Default state set to Deny for `Create Private Spaces` and `Create Public Spaces` Groups permissions
- Fix #7174: In lists, when an item text is displayed on multiple lines, the lines below are not lining up with the first one
- Fix #7173: Fix marketplace module label "Professional Edition"
- Fix #7176: Fix of broken tests related to `Create Private Spaces` and `Create Public Spaces` Groups permissions

View File

@ -122,12 +122,8 @@
ul, ol {
margin-top: 0;
padding-left: 0;
padding-left: 30px;
display: table;
list-style-position: inside;
ul, ol {
padding-left: 30px;
}
li p {
// otherwise single list items p hides the marker
overflow: visible !important;

File diff suppressed because one or more lines are too long