mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-28 17:50:39 +00:00
ac560231fb
* Instead of creating a new div, replaced the content of EVERY SINGLE DIV ON THE PAGE when a user had no notifications. * Added some styling to make title and link prettier. Change-Id: Id713ca56abc2f58ed1d580f3e43efa3c46d76c2a
31 lines
460 B
CSS
31 lines
460 B
CSS
.mw-echo-overlay {
|
|
position: absolute;
|
|
top: 2em;
|
|
right: 5em;
|
|
border: 1px solid #A7D7F9;
|
|
background-color: #fff;
|
|
min-width: 20em;
|
|
min-height: 2em;
|
|
padding: 1em;
|
|
}
|
|
|
|
.mw-echo-overlay ul {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.mw-echo-overlay li {
|
|
border-bottom: 1px solid #A7D7F9;
|
|
font-size: 0.8em !important;
|
|
display: block;
|
|
}
|
|
|
|
.mw-echo-overlay-title {
|
|
border-bottom: 1px solid #A7D7F9;
|
|
font-size: larger;
|
|
}
|
|
|
|
.mw-echo-overlay-link {
|
|
font-size: 0.8em !important;
|
|
}
|
|
|