mediawiki-extensions-Echo/modules/styles/mw.echo.ui.NotificationBadgeWidget.monobook.less
Roan Kattouw 68a344d59a Override white background on hover for links in Monobook
p-personal links have a white background on hover, and links
inside the notifications popup were inheriting that CSS rule.

Bug: T144063
Change-Id: I3868e418ab8cce8e5ff6f7cc10e042907cb1e8df
2016-08-29 14:41:54 -07:00

28 lines
504 B
Plaintext

@import '../echo.variables';
#p-personal li.mw-echo-ui-notificationBadgeButtonPopupWidget {
text-transform: none;
font-weight: normal;
&, .oo-ui-popupWidget a.oo-ui-buttonElement-button {
color: #333;
}
a {
background-color: initial;
}
// Badge
> .oo-ui-buttonElement-button {
&:hover {
.oo-ui-labelElement-label {
color: black !important;
}
}
}
// Footer
.oo-ui-popupWidget-footer {
// Override text-align that monobook uses for #p-personal li
text-align: left;
}
}