mirror of
https://github.com/humhub/humhub.git
synced 2025-01-16 21:58:17 +01:00
Fix markdown list style (#7091)
This commit is contained in:
parent
c5863b42dd
commit
da5f9a520f
@ -122,15 +122,19 @@
|
||||
|
||||
ul, ol {
|
||||
margin-top: 0;
|
||||
padding-left: 30px;
|
||||
display: inline-block;
|
||||
padding-left: 0;
|
||||
display: table;
|
||||
list-style-position: inside;
|
||||
ul, ol {
|
||||
display: block;
|
||||
padding-left: 30px;
|
||||
}
|
||||
li p {
|
||||
// otherwise single list items p hides the marker
|
||||
overflow: visible !important;
|
||||
}
|
||||
li > p:first-child {
|
||||
display: inline;
|
||||
}
|
||||
}
|
||||
|
||||
.footnote {
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user