mediawiki-extensions-Echo/modules/styles/mw.echo.ui.NotificationItemWidget.modern.less
Volker E 675d454bad build: Extend stylelint to further rules
Extending stylelint to include further general rules
and remove obsolete .csslintrc file.

Change-Id: I6957cc3731c39f495e985c9dbd40363102e2e6f0
2016-10-05 14:52:29 -07:00

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 */