mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-12-01 02:37:05 +00:00
6d069498e9
Add `cursor: inherit;` to the class `mw-selflink` to get back the expected behaviour of these 'links'. Bug: T375876 Change-Id: I52d54dc1265fd1a64bc461892e69475a3b3d50b2
68 lines
1.6 KiB
Plaintext
68 lines
1.6 KiB
Plaintext
a {
|
|
.cdx-mixin-link-base();
|
|
/* T373989 */
|
|
border-radius: 0;
|
|
}
|
|
|
|
// Red links
|
|
a.new {
|
|
.cdx-mixin-link-red();
|
|
}
|
|
|
|
// External links
|
|
// Use of `a` element selector for limiting generic class scope due to `.external` widespread usage.
|
|
.mw-parser-output {
|
|
a {
|
|
// Deal with long links (T327334, inspired by Minerva solution T62387)
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
a.external {
|
|
// Use copy of Codex/OOUI WikimediaUI theme's 'linkExternal' icon in progressive color.
|
|
// Note that CSSJanus is flipping the `ltr` in the URL to `rtl`.
|
|
// Therefore make sure that both icons are available and up-to-date.
|
|
background-image: url( images/link-external-small-ltr-progressive.svg );
|
|
background-position: center right;
|
|
background-repeat: no-repeat;
|
|
// Equivalent of `12px` at calculation base of `14px` is `0.857em`.
|
|
background-size: 0.857em;
|
|
padding-right: 1em;
|
|
|
|
// See T330712 for better understanding of this class and any future changes.
|
|
&.free {
|
|
word-break: break-all;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* The following styles are copied from content.links.less
|
|
*/
|
|
|
|
/* self links */
|
|
a.mw-selflink {
|
|
color: inherit;
|
|
font-weight: bold;
|
|
text-decoration: inherit;
|
|
|
|
&:hover {
|
|
cursor: inherit;
|
|
}
|
|
}
|
|
|
|
/* Underline preference */
|
|
.mw-underline-always a {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.mw-underline-never a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Plainlinks - this can be used to switch
|
|
* off special external link styling */
|
|
.plainlinks a.external {
|
|
background: none !important; /* stylelint-disable-line declaration-no-important */
|
|
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
}
|