2023-04-03 19:44:38 +00:00
|
|
|
@import 'mediawiki.skin.variables.less';
|
2019-10-25 20:53:39 +00:00
|
|
|
@import '../echo.variables.less';
|
2019-01-10 02:42:06 +00:00
|
|
|
|
2016-03-16 22:47:20 +00:00
|
|
|
.mw-echo-ui-notificationsInboxWidget {
|
2016-09-02 00:52:26 +00:00
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
max-width: @specialpage-width;
|
2016-09-30 19:16:28 +00:00
|
|
|
position: relative;
|
2016-09-02 00:52:26 +00:00
|
|
|
|
2016-05-31 22:32:16 +00:00
|
|
|
&-row {
|
|
|
|
display: table-row;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2016-09-30 19:16:28 +00:00
|
|
|
|
|
|
|
&-toolbarWrapper {
|
2017-10-17 14:22:26 +00:00
|
|
|
height: 3.5em;
|
2022-05-09 13:05:59 +00:00
|
|
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
2018-02-04 21:26:06 +00:00
|
|
|
position: -webkit-sticky;
|
2022-05-09 13:05:59 +00:00
|
|
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
2017-10-17 14:22:26 +00:00
|
|
|
position: sticky;
|
|
|
|
padding-top: 0.5em;
|
|
|
|
margin-top: -0.5em;
|
|
|
|
top: 0;
|
|
|
|
z-index: 2;
|
2023-04-03 19:44:38 +00:00
|
|
|
background-color: @background-color-base;
|
2017-10-17 14:22:26 +00:00
|
|
|
box-shadow: 0 2px 0 0 rgba( 0, 0, 0, 0.1 );
|
2016-09-30 19:16:28 +00:00
|
|
|
}
|
|
|
|
|
2016-05-31 22:32:16 +00:00
|
|
|
&-cell {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
2019-01-10 02:42:06 +00:00
|
|
|
|
2016-05-31 22:32:16 +00:00
|
|
|
&-placeholder {
|
2016-05-27 20:39:15 +00:00
|
|
|
display: table-cell;
|
2016-05-31 22:32:16 +00:00
|
|
|
width: 100%;
|
2016-05-27 20:39:15 +00:00
|
|
|
}
|
2016-05-31 22:32:16 +00:00
|
|
|
}
|
2016-03-16 22:47:20 +00:00
|
|
|
|
2016-05-31 22:32:16 +00:00
|
|
|
&-sidebar {
|
|
|
|
width: @specialpage-sidebar-width;
|
|
|
|
padding-right: 1em;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2019-01-10 02:42:06 +00:00
|
|
|
|
2016-05-31 22:32:16 +00:00
|
|
|
&-main {
|
|
|
|
vertical-align: top;
|
2016-03-16 22:47:20 +00:00
|
|
|
|
2016-05-31 22:32:16 +00:00
|
|
|
&-toolbar {
|
|
|
|
&-top {
|
|
|
|
display: table;
|
2016-03-16 22:47:20 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-11-07 03:40:44 +00:00
|
|
|
&-readState {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
.mw-echo-ui-readStateButtonSelectWidget {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-29 23:36:03 +00:00
|
|
|
&-settings {
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
2016-03-16 22:47:20 +00:00
|
|
|
}
|
|
|
|
}
|
2016-05-31 22:32:16 +00:00
|
|
|
|
2016-09-02 00:52:26 +00:00
|
|
|
@media all and ( max-width: ( @specialpage-hd-width - 1 ) ) {
|
2016-07-19 21:29:15 +00:00
|
|
|
// Override table-layout for the top toolbar so we get
|
|
|
|
// filters and pagination under one another
|
|
|
|
&-main {
|
|
|
|
&-toolbar {
|
|
|
|
&-top {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
|
|
|
.mw-echo-ui-notificationsInboxWidget-row {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
2019-01-10 02:42:06 +00:00
|
|
|
|
2020-07-27 15:11:38 +00:00
|
|
|
// Nav filter is the mobile version of readState
|
|
|
|
&-readState,
|
|
|
|
&-nav-filter {
|
|
|
|
display: block;
|
2016-07-19 21:29:15 +00:00
|
|
|
}
|
2019-01-10 02:42:06 +00:00
|
|
|
|
2016-07-23 00:23:54 +00:00
|
|
|
&-settings,
|
2016-07-19 21:29:15 +00:00
|
|
|
&-pagination {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
2019-01-10 02:42:06 +00:00
|
|
|
|
2016-07-23 00:23:54 +00:00
|
|
|
&-settings {
|
|
|
|
.oo-ui-popupWidget-popup {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
2016-07-19 21:29:15 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-10 02:42:06 +00:00
|
|
|
|
2020-07-27 15:11:38 +00:00
|
|
|
&-cell-placeholder {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-sidebar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-09-30 19:16:28 +00:00
|
|
|
&-toolbarWrapper {
|
2017-10-17 14:22:26 +00:00
|
|
|
height: 7em;
|
2016-09-30 19:16:28 +00:00
|
|
|
}
|
2016-07-19 21:29:15 +00:00
|
|
|
}
|
2016-03-16 22:47:20 +00:00
|
|
|
}
|