mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-25 00:05:29 +00:00
35a5384900
And change all CSS and JS dependent calls/tags based on the new tooltip message and ID of the personal tool <li> item. Change-Id: I136fabe5710f90da10eb8d4afe92acdb77571eec
29 lines
625 B
Plaintext
29 lines
625 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-notice & {
|
|
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-notice & {
|
|
background-color: @badge-background-unseen-message;
|
|
}
|
|
}
|
|
}
|