@import '../../minerva.less/minerva.variables'; /** * This tweaks the default mediawiki.hlist module to provide performance optimisations * as well as subtle tweaks to the appearance. It's a work in progress. */ // FIXME: to support hlists on enwiki projects - this should be deprecated .hlist > ul, .hlist > dl, // Horizontal Lists // // Use hlist class when dealing with lists where items should be horizontal. // // Markup: // // // Styleguide 1.5. ul.hlist { li { display: inline-block; margin-right: 8px; } } .hlist-separated { li:after { // Make sure we override any site styles content: '•' !important; padding-left: 8px; font-size: 1em; line-height: 1; } :last-child:after { content: none !important; } }