mediawiki-extensions-Echo/modules/ooui/styles/mw.echo.ui.NotificationBadgeWidget.modern.less
Moriel Schottlender 9f1bedda1c Override footer buttons hover color in Modern
In Modern, the hover color for links in the #p-personal bar is
white, which is unhelpful for the buttons in the popup. Override
that style for hover.

Bug: T114080
Change-Id: I8b739f2a46c3eb3ce9f61e92b5025751047a451d
2015-10-08 16:28:30 -07:00

19 lines
382 B
Plaintext

body #p-personal {
overflow: visible;
}
#p-personal li.mw-echo-ui-notificationBadgeButtonPopupWidget {
font-variant: normal;
text-transform: none;
font-weight: normal;
// Badge
> .oo-ui-buttonElement-button {
border-radius: none;
}
// Popup buttons
.oo-ui-buttonElement-button:hover {
// In modern, the hover color is white, which is unhelpful.
color: #666666;
}
}