mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-15 03:35:01 +00:00
9f1bedda1c
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
19 lines
382 B
Plaintext
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;
|
|
}
|
|
}
|