mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
integrations css: Properly indent multi-paragraph list items.
Since every <li> element is prefixed by a custom list number, in <li> elements with multiple <p> elements inside, the <p> elements after the first one did NOT take into account the space occupied by the custom list number, which resulted in inconsistent indentation. Now, it does!
This commit is contained in:
@@ -305,6 +305,15 @@ body {
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
.portico-landing.integrations ol {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.portico-landing.integrations ol > li > p:not(:first-child) {
|
||||
padding-left: 24px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.markdown ol > li > ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user