mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-24 06:13:54 +00:00
Do not style links without href attribute
Certain links (including links inside navboxes) render links to themselves - for example the navbox on the San Francisco article (provided it is not removed by wgMFRemovableClasses) These links should not look like links as they are not clickable so should be visually distinguished. Support for attribute selectors goes way back to IE7 and in the case of IE6, links will still render correctly falling back to the browser default stylesheet Bug: T181472 Change-Id: I9f842ae09751d299716d752328f747269597fbdb
This commit is contained in:
parent
a284c1b75d
commit
daa6ad5145
|
@ -2,9 +2,18 @@
|
|||
@import 'minerva.variables.less';
|
||||
@import 'minerva.mixins.less';
|
||||
|
||||
/**
|
||||
* Note that certain links may not have an href selector if they point to the page
|
||||
* you are on. It is particularly important on wikis for example inside navbox's that these
|
||||
* links can be differentiated from other links. Thus we only apply the linkColor to links with href
|
||||
* attributes.
|
||||
*/
|
||||
a[href] {
|
||||
color: @linkColor;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: @linkColor;
|
||||
|
||||
&:visited {
|
||||
color: #5a3696;
|
||||
|
|
Loading…
Reference in a new issue