2017-07-12 15:12:40 +00:00
|
|
|
@import 'mediawiki.mixins.less';
|
|
|
|
@import 'minerva.variables.less';
|
|
|
|
@import 'minerva.mixins.less';
|
|
|
|
|
2018-03-26 17:41:36 +00:00
|
|
|
/**
|
2018-03-28 17:39:58 +00:00
|
|
|
* Note that certain links may not have an href selector.
|
|
|
|
* It is particularly important on wikis for example inside navbox's that these
|
2018-03-26 17:41:36 +00:00
|
|
|
* links can be differentiated from other links. Thus we only apply the linkColor to links with href
|
|
|
|
* attributes.
|
|
|
|
*/
|
|
|
|
a[href] {
|
|
|
|
color: @linkColor;
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&: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;
|
|
|
|
}
|
2017-11-10 15:33:55 +00:00
|
|
|
|
|
|
|
// Numbered external links, copied from content.parsoid.less
|
|
|
|
// TODO: Separate theme-agnostic rules from that module
|
|
|
|
// so we can load it here.
|
|
|
|
.mw-parser-output {
|
|
|
|
counter-reset: mw-numbered-ext-link;
|
|
|
|
|
|
|
|
a[rel~='mw:ExtLink']:empty:after {
|
|
|
|
content: '[' counter( mw-numbered-ext-link ) ']';
|
|
|
|
counter-increment: mw-numbered-ext-link;
|
|
|
|
}
|
|
|
|
}
|