mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
219b3d8b28
Bug: T112290 Change-Id: I1e73c92c69cf6df7c4d08b27a392f9c9bc19446f
29 lines
627 B
Plaintext
29 lines
627 B
Plaintext
@import '../echo.variables';
|
|
@import '../echo.variables.vector';
|
|
|
|
/* We have to include the #pt-notifications selector due to monobook */
|
|
.mw-echo-notifications-badge {
|
|
#pt-notifications-alert &,
|
|
#pt-notifications-message & {
|
|
border-radius: 0.2em;
|
|
background-color: #d2d2d2;
|
|
font-size: 1.125em;
|
|
color: @badge-text-color-idle;
|
|
|
|
&:hover,
|
|
&:active,
|
|
&:focus {
|
|
background-color: #c2c2c2;
|
|
}
|
|
}
|
|
|
|
&.mw-echo-unseen-notifications {
|
|
#pt-notifications-alert & {
|
|
background-color: @badge-background-unseen-alert;
|
|
}
|
|
#pt-notifications-message & {
|
|
background-color: @badge-background-unseen-message;
|
|
}
|
|
}
|
|
}
|