Adding a reflist.less file to hold Template:Reflist specific styles

Template:Reflist needs a larger column-gap to be consistent with
the Vector skin.

Bug: T150377
Change-Id: I14911f9b0fa46249cf11a591bc5323a227f7c3cc
This commit is contained in:
Jan Drewniak 2019-06-03 14:27:50 +02:00
parent 89fb347e09
commit ed9f455545
2 changed files with 11 additions and 0 deletions

View File

@ -12,6 +12,7 @@ FIXME: Review all of these hacks to see if they still apply.
@import '../../minerva.less/minerva.variables';
@import '../../minerva.less/minerva.mixins';
@import 'templates/ambox.less';
@import 'templates/reflist.less';
.collapsible td {
width: auto !important;

View File

@ -0,0 +1,10 @@
/**
* Template:Reflist - the 30em wide, two column list of references on Wikipedia.
* https://en.wikipedia.org/wiki/Template:Reflist
**/
.content {
.reflist {
column-gap: 2em;
}
}