mediawiki-skins-MinervaNeue/resources/skins.minerva.base.styles/content/lists.less
SnowFire e3515afdf0 Add margin top/bottom to dl list style to match other skins
Bug: T341915
Change-Id: I520e1bcf5010646b0032f85cc080b37c25744a0e
2023-07-18 17:37:05 +00:00

48 lines
645 B
Plaintext

.content {
ol {
padding-left: 2.25em;
}
ul {
list-style-type: disc;
padding-left: 1em;
& > li > ul {
list-style-type: circle;
& > li > ul {
list-style-type: square;
}
}
}
/* stylelint-disable no-descending-specificity */
ol,
ul {
ol,
ul {
margin-left: 1em;
}
}
li {
margin-bottom: 10px;
&:last-child {
margin-bottom: inherit;
}
}
/* stylelint-enable no-descending-specificity */
}
/* As in Vector, indenting of definition lists, and bolding of definition terms is generically useful */
dl {
margin-top: 0.2em;
margin-bottom: 0.5em;
margin-left: 1em;
dt {
font-weight: bold;
}
}