mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-23 21:23:09 +00:00
cc3e40b408
Change the pending element to be the notifications list rather than the whole inbox widget in the Special:Notifications page. Bug: T136581 Change-Id: I82b073c9cd628f30c13305510d6604e3ef636c2a
23 lines
536 B
Plaintext
23 lines
536 B
Plaintext
.mw-echo-ui-datedNotificationsWidget {
|
|
min-height: 5em;
|
|
|
|
// We want everything inside the widget to be
|
|
// pending/transparent, but not the widget itself
|
|
// because otherwise, the background pending animation
|
|
// is also transparent.
|
|
&.oo-ui-pendingElement-pending > * {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.mw-echo-ui-subGroupListWidget {
|
|
// This is a hack to make sure that this widget
|
|
// is the nearest scrollable widget for the submenus
|
|
overflow-y: auto;
|
|
|
|
&-header {
|
|
border-bottom: 1px #ccc solid;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
}
|
|
}
|