mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-28 09:40:41 +00:00
43d95d153e
Change-Id: If3c93582dbbdcab14b10ad9fe2926dcc94186756
23 lines
669 B
CSS
23 lines
669 B
CSS
/* We have to include the #pt-notifications selector due to monobook */
|
||
#pt-notifications .mw-echo-notifications-badge {
|
||
min-width: 7px;
|
||
border-radius: 2px;
|
||
padding: 0.25em 0.45em 0.2em 0.45em;
|
||
margin-left: -4px;
|
||
text-align: center;
|
||
background-color: #d2d2d2;
|
||
font-weight: bold;
|
||
color: white;
|
||
text-shadow: 0 1px rgba(0, 0, 0, 0.4);
|
||
cursor: pointer;
|
||
}
|
||
#pt-notifications .mw-echo-notifications-badge:hover {
|
||
background-color: #c2c2c2;
|
||
}
|
||
#pt-notifications .mw-echo-notifications-badge.mw-echo-unread-notifications {
|
||
background-color: #cc0000;
|
||
}
|
||
#pt-notifications .mw-echo-notifications-badge.mw-echo-unread-notifications:hover {
|
||
background-color: #bf0000;
|
||
}
|