Fix markdown sub list style (#7089)

This commit is contained in:
Yuriy Bakhtin 2024-06-25 19:40:01 +02:00 committed by GitHub
parent f41350c8f8
commit c5863b42dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 1 deletions

View File

@ -5,6 +5,7 @@ HumHub Changelog
----------------------
- Fix #7084: Fix compatibility for PHP 8.0+
- Fix #7088: Improve handling of legacy configuration for "search" component
- Fix #7089: Fix markdown sub list style
1.16.0 (June 19, 2024)
----------------------

View File

@ -124,6 +124,9 @@
margin-top: 0;
padding-left: 30px;
display: inline-block;
ul, ol {
display: block;
}
li p {
// otherwise single list items p hides the marker
overflow: visible !important;

File diff suppressed because one or more lines are too long