mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 19:28:31 +00:00
8e76bc4126
Changing the way Echo's front-end architecture works to work with model-view-controller methodology. Change-Id: I97862402c41bc04dd41cd08d79f19ff677340249
44 lines
696 B
Plaintext
44 lines
696 B
Plaintext
@import '../echo.variables';
|
|
|
|
.mw-echo-ui-subGroupListWidget {
|
|
|
|
&:not(:first-child) {
|
|
padding-top: @bundle-group-padding;
|
|
}
|
|
|
|
&-title {
|
|
// Override OOUI's line height for labels
|
|
line-height: 1em !important;
|
|
font-weight: bold;
|
|
color: #666666;
|
|
margin-bottom: @bundle-group-padding;
|
|
}
|
|
|
|
.mw-echo-ui-sortedListWidget {
|
|
margin-bottom: @bundle-group-padding / 2;
|
|
}
|
|
|
|
.mw-echo-ui-notificationItemWidget {
|
|
padding: 0.5em;
|
|
border: 1px solid #DDDDDD;
|
|
box-sizing: border-box;
|
|
|
|
&:not(:last-child) {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
&-icon img {
|
|
height: 1.5em;
|
|
width: 1.5em;
|
|
}
|
|
|
|
&-content {
|
|
padding-left: 0.5em + 1.5em;
|
|
}
|
|
|
|
&-markAsReadButton {
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
}
|