mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-23 15:26:47 +00:00
Merge "Align Vector link styles with Minerva"
This commit is contained in:
commit
a9a2b617f5
|
@ -8,6 +8,13 @@
|
|||
"declaration-property-unit-disallowed-list": null,
|
||||
"no-descending-specificity": null,
|
||||
"selector-class-pattern": null,
|
||||
"selector-max-id": null
|
||||
}
|
||||
"selector-max-id": null,
|
||||
"selector-max-specificity": "1,4,2"
|
||||
},
|
||||
"overrides": [ {
|
||||
"files": [ "resources/skins.vector.styles/links.less" ],
|
||||
"rules": {
|
||||
"selector-max-specificity": "0,0,1"
|
||||
}
|
||||
} ]
|
||||
}
|
||||
|
|
|
@ -1,16 +1,21 @@
|
|||
a {
|
||||
/*
|
||||
* This not does apply to links with role button per discussion on T373989
|
||||
* The `where` it used here as specificity is important so support overriding
|
||||
* in skins and extensions.
|
||||
* When changing this file - DO NOT disable stylelint rule selector-max-specificity
|
||||
*/
|
||||
a:where( :not( [ role='button' ] ) ) {
|
||||
.cdx-mixin-link-base();
|
||||
/* T373989 */
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
// Red links
|
||||
a.new {
|
||||
// Red links - DO NOT disable stylelint rule selector-max-specificity for this rule.
|
||||
a:where( .new:not( [ role='button' ] ) ) {
|
||||
.cdx-mixin-link-red();
|
||||
}
|
||||
|
||||
// External links
|
||||
// Use of `a` element selector for limiting generic class scope due to `.external` widespread usage.
|
||||
/* stylelint-disable selector-max-specificity */
|
||||
.mw-parser-output {
|
||||
a {
|
||||
// Deal with long links (T327334, inspired by Minerva solution T62387)
|
||||
|
@ -34,12 +39,14 @@ a.new {
|
|||
}
|
||||
}
|
||||
}
|
||||
/* stylelint-enable selector-max-specificity */
|
||||
|
||||
/**
|
||||
* The following styles are copied from content.links.less
|
||||
*/
|
||||
|
||||
/* self links */
|
||||
/* stylelint-disable selector-max-specificity */
|
||||
a.mw-selflink {
|
||||
color: inherit;
|
||||
font-weight: bold;
|
||||
|
@ -65,3 +72,4 @@ a.mw-selflink {
|
|||
background: none !important; /* stylelint-disable-line declaration-no-important */
|
||||
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
|
||||
}
|
||||
/* stylelint-enable selector-max-specificity */
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
/* stylelint-disable selector-max-specificity */
|
||||
.skin-vector-legacy {
|
||||
#pt-notifications-notice .mw-echo-notifications-badge,
|
||||
#pt-notifications-alert .mw-echo-notifications-badge {
|
||||
|
|
Loading…
Reference in a new issue