mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-27 23:50:30 +00:00
Remove horizontal line from popups preview in MinervaNeue skin
A horizontal line shows in popup previews in the MinervaNeue skin just above the setting icon due to a css rule that affect all footer elements. Removing this effect to apply only for the MN skin. Bug: T184560 Change-Id: Idb0c40c3fc24e4ec2d32cb2de9520952448da77a
This commit is contained in:
parent
b9accca0b2
commit
3c81e0c717
|
@ -1,5 +1,5 @@
|
|||
{{#footer}}
|
||||
<footer>
|
||||
<footer class="minerva-footer">
|
||||
{{{lastmodified}}}
|
||||
<div class="post-content footer-content">
|
||||
<h2>{{{headinghtml}}}</h2>
|
||||
|
|
|
@ -1,11 +1,15 @@
|
|||
@import 'minerva.variables';
|
||||
@import 'minerva.mixins';
|
||||
|
||||
footer {
|
||||
// style that applies only to minerva footer
|
||||
.minerva-footer {
|
||||
border-top: solid 1px @footerBorderColor;
|
||||
overflow: auto;
|
||||
padding-bottom: 6px;
|
||||
}
|
||||
|
||||
// styles that apply to nested footer components
|
||||
footer {
|
||||
// links should be separated by same color
|
||||
.hlist {
|
||||
li:after {
|
||||
|
|
Loading…
Reference in a new issue