mediawiki-extensions-Echo/modules/nojs/mw.echo.notifications.less
Moriel Schottlender 15a44768f4 Add mark-as-read button to notifications in Special:Notifications
Bug: T115528
Change-Id: I54dba5f86d28a069659d66dede5b7ab9981213aa
2016-05-11 10:41:32 -07:00

94 lines
1.8 KiB
Plaintext

@import '../echo.variables';
@import '../echo.mixins';
// This needs to be outside the upper selector 'NotificationItemWidget'
// because the same styles also apply (for the moment, at least) to the notification
// objects in the Special:Notifications page, which are, individually
// not wrapped with a NotificationItemWidget.
.mw-echo-state {
display: block;
width: 100%;
box-sizing: border-box;
.mw-echo-notification-primary-link {
display: none;
}
.mw-echo-icon {
width: 30px;
height: 30px;
float: left;
margin-right: 10px;
margin-left: 10px;
}
.mw-echo-notification {
clear: both;
display: block;
color: #6D6D6D;
line-height: 90%;
margin: 0;
min-height: 30px;
background-color: white;
position: relative;
padding-top: 15px;
padding-bottom: 10px;
/* Force container to expand to height of floated contents */
overflow: hidden;
zoom: 1;
span.autocomment {
color: inherit;
font-style: normal;
}
}
.mw-echo-notifications {
background-color: #EEEEEE;
}
.mw-echo-content {
overflow: hidden;
display: block;
.mw-echo-title {
color: @notification-text-color;
}
.mw-echo-payload {
.mw-echo-ui-mixin-one-line-truncated;
color: @notification-body-color;
margin-top: 4px;
}
.mw-echo-title,
.mw-echo-payload {
font-size: 1em;
line-height: 1.4em;
.plainlinks {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
display: inline-block;
vertical-align: top;
}
}
.mw-echo-notification-footer {
color: #6D6D6D;
font-size: 11px;
margin-top: 0.2em;
.mw-echo-notification-footer-element {
display: inline-block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
max-width: 15em;
margin-right: 0.5em;
}
}
}
}