mirror of https://github.com/zulip/zulip.git
portico: Fix line-wrapping of bulleted lists with 2-digit numbers.
As demonstrated with the recent Zabbix integration, our line-wrapping of numbered lists was busted in the presence of 2-digit numbers of steps. Fixes #17634.
This commit is contained in:
parent
fa8914085e
commit
e1aa7dd882
|
@ -112,7 +112,8 @@
|
|||
& > p {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
max-width: calc(100% - 32px);
|
||||
/* This needs to be wide enough for 2-digit numbers. */
|
||||
max-width: calc(100% - 40px);
|
||||
position: relative;
|
||||
top: -2px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue