mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-15 02:13:49 +00:00
dd elements should have no margin
In 1.42.0-wmf.17 these had margin 0 in Minerva. I incorrectly assumed we had defined an explicit margin in content and for talk pages but apparently none exists, so I have restored this rule to the list.less file. Follow up to I6331d88e5b7301fd13249414350a539738cfae53 Bug: T357742 Change-Id: Ib3062bfbffe35415f479bae46ecf02e8a094958b
This commit is contained in:
parent
57d1b2ab5b
commit
003d9fea5b
|
@ -44,4 +44,14 @@ dl {
|
|||
dt {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/*
|
||||
* Historically Minerva used a CSS reset to reset the margin of dd elements to 0.
|
||||
* The main use case here is talk pages which can have significant intendation levels.
|
||||
* This should likely be reconsidered for appropriate semantic use of dd elements and
|
||||
* scoped to talk pages at a later date.
|
||||
*/
|
||||
dd {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue