mediawiki-extensions-Echo/modules/styles/mw.echo.ui.DatedNotificationsWidget.less
Moriel Schottlender cc3e40b408 Make the notifications list the pending element
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
2016-05-30 17:24:12 -07:00

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;
}
}
}