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