mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 11:16:16 +00:00
311150a92d
Bug: T141949 Change-Id: Id0987ea9e7929777c887ceea6757ec00b3bf18ae
49 lines
985 B
Plaintext
49 lines
985 B
Plaintext
@import '../echo.variables';
|
|
.mw-echo-ui-datedSubGroupListWidget {
|
|
// We have to reiterate the fixed width here so that the
|
|
// concatenation works inside the items. This is an issue
|
|
// with css' table-layout, which notification items are
|
|
// set to
|
|
width: @specialpage-width;
|
|
|
|
&-title {
|
|
font-weight: normal;
|
|
|
|
&-primary {
|
|
font-size: 1.5em;
|
|
margin-right: 0.5em;
|
|
display: inline-block;
|
|
&::first-letter {
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
|
|
&-secondary {
|
|
font-size: 1.5em;
|
|
color: #777777;
|
|
}
|
|
}
|
|
|
|
@media all and ( max-width: @specialpage-mobile-width-medium ) {
|
|
// Make narrow
|
|
width: @specialpage-mobile-width-small;
|
|
|
|
.mw-echo-ui-subGroupListWidget-header-row-markAllReadButton {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
&-title-primary {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
&-title-secondary {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media all and ( max-width: @specialpage-mobile-width-small ) {
|
|
// Make narrow with margin
|
|
width: @specialpage-mobile-width-small - 32px;
|
|
}
|
|
}
|