mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-23 23:44:53 +00:00
c191982a81
Change-Id: Ide5b1395ea50e3d9fb15ca4690bce1cb9be90715
95 lines
1.7 KiB
Plaintext
95 lines
1.7 KiB
Plaintext
@import 'mediawiki.skin.variables.less';
|
|
@import '../echo.variables.less';
|
|
|
|
/* Flexbox gap not supported in all browsers */
|
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
.mw-echo-ui-notificationsInboxWidget {
|
|
width: 100%;
|
|
max-width: @specialpage-width;
|
|
position: relative;
|
|
|
|
/* Flexbox gap not supported in all browsers */
|
|
/* stylelint-disable-next-line plugin/no-unsupported-browser-features */
|
|
&-row {
|
|
display: flex;
|
|
align-items: start;
|
|
flex-wrap: wrap;
|
|
gap: 1em;
|
|
}
|
|
|
|
&-toolbarWrapper {
|
|
min-height: 3.5em;
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
padding-bottom: 1em;
|
|
padding-top: 0.5em;
|
|
margin-top: -0.5em;
|
|
top: 0;
|
|
z-index: 2;
|
|
background-color: @background-color-base;
|
|
box-shadow: 0 2px 0 0 rgba( 0, 0, 0, 0.1 );
|
|
}
|
|
|
|
&-cell {
|
|
&-placeholder {
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
&-sidebar {
|
|
flex-basis: @specialpage-sidebar-width;
|
|
flex-grow: 1;
|
|
max-width: @specialpage-sidebar-max-width;
|
|
}
|
|
|
|
&-main {
|
|
flex-basis: @specialpage-main-width;
|
|
flex-grow: 2;
|
|
|
|
&-toolbar {
|
|
&-top {
|
|
.mw-echo-ui-notificationsInboxWidget-row {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media all and ( max-width: ( @specialpage-hd-width - 1 ) ) {
|
|
// Override for the top toolbar so we get
|
|
// filters and pagination under one another
|
|
&-main {
|
|
min-width: 0;
|
|
|
|
&-toolbar {
|
|
&-top {
|
|
.mw-echo-ui-notificationsInboxWidget-row {
|
|
text-align: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
&-settings {
|
|
.oo-ui-popupWidget-popup {
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&-cell-placeholder {
|
|
width: 100%;
|
|
}
|
|
|
|
&-sidebar {
|
|
display: none;
|
|
}
|
|
|
|
&-toolbarWrapper {
|
|
min-height: 7em;
|
|
}
|
|
}
|
|
}
|