mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
675d454bad
Extending stylelint to include further general rules and remove obsolete .csslintrc file. Change-Id: I6957cc3731c39f495e985c9dbd40363102e2e6f0
26 lines
546 B
Plaintext
26 lines
546 B
Plaintext
/* stylelint-disable no-descending-specificity */
|
|
#p-personal {
|
|
.mw-echo-ui-notificationItemWidget {
|
|
& a,
|
|
& a.new {
|
|
// Oh and double everything for :hover since Modern does that too.
|
|
&,
|
|
&:hover {
|
|
// In modern, the hover color is white, which is unhelpful.
|
|
color: #666;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Override personal tools padding for links
|
|
li .mw-echo-state a {
|
|
padding: 0;
|
|
}
|
|
|
|
.mw-echo-ui-notificationBadgeButtonPopupWidget-footer a {
|
|
color: #666;
|
|
}
|
|
}
|
|
/* stylelint-enable no-descending-specificity */
|