mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-12-04 10:39:08 +00:00
87934a3034
This styles parser errors, which were previously unstyled. It removes the need for the clear for the table of contents on stub pages Additional change: * The base styles module increases with this change * While testing bundlesizes I noticed that the bundlesize for the content styles is outdated and have updated it (this is unrelated to the inclusion of the new feature) Bug: T281228 Change-Id: I8e099b18f0866201cba378f6110913cdab478c4c
53 lines
665 B
Plaintext
53 lines
665 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 */
|
|
}
|
|
|
|
dl {
|
|
margin-left: 1em;
|
|
|
|
dt {
|
|
font-weight: bold;
|
|
}
|
|
|
|
dd {
|
|
display: block;
|
|
// Some dd's may contain images so these need to be scrollable
|
|
// Text will not become scrollable.
|
|
// (see T160946)
|
|
overflow: auto;
|
|
}
|
|
}
|