mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
MM-58354 Fix numbered Markdown lists not wrapping long words (#27186)
This commit is contained in:
parent
527fe4a654
commit
76774e61b6
@ -397,12 +397,14 @@ ol.markdown__list {
|
||||
>li {
|
||||
display: table-row;
|
||||
counter-increment: list;
|
||||
word-break: break-word;
|
||||
|
||||
&::before {
|
||||
display: table-cell;
|
||||
padding-right: 8px;
|
||||
content: counter(list) ".";
|
||||
text-align: right;
|
||||
word-break: keep-all;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user