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:
Tim Abbott 2021-03-14 19:35:35 -07:00
parent fa8914085e
commit e1aa7dd882
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}