mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-28 16:10:55 +00:00
54 lines
916 B
Plaintext
54 lines
916 B
Plaintext
|
@import 'mediawiki.mixins.less';
|
||
|
@import 'minerva.variables.less';
|
||
|
@import 'minerva.mixins.less';
|
||
|
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
color: @linkColor;
|
||
|
|
||
|
&:visited {
|
||
|
color: #5a3696;
|
||
|
}
|
||
|
|
||
|
&:active {
|
||
|
color: #faa700;
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
&.new,
|
||
|
&.new:visited,
|
||
|
&.new:hover {
|
||
|
color: @redLinkColor;
|
||
|
// Take care of headings in page lists.
|
||
|
> * {
|
||
|
color: @redLinkColor;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.external {
|
||
|
/* @embed */
|
||
|
.background-image-svg( 'images/external-link-ltr-icon.svg', 'images/external-link-ltr-icon.png' );
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center right;
|
||
|
padding-right: 13px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Generic class name needed
|
||
|
.return-link,
|
||
|
#mw-mf-last-modified {
|
||
|
display: block;
|
||
|
font-size: 0.9em;
|
||
|
margin-top: 1.5em;
|
||
|
}
|
||
|
|
||
|
/* Plainlinks - this can be used to switch
|
||
|
* off special external link styling */
|
||
|
.plainlinks a {
|
||
|
background: none !important;
|
||
|
padding: 0 !important;
|
||
|
}
|