2015-12-18 18:56:59 +00:00
|
|
|
@import '../echo.variables';
|
2016-01-20 21:19:54 +00:00
|
|
|
@import '../echo.mixins';
|
2015-12-18 18:56:59 +00:00
|
|
|
|
2015-11-12 19:37:56 +00:00
|
|
|
// This needs to be outside the upper selector 'NotificationItemWidget'
|
2015-08-13 00:54:16 +00:00
|
|
|
// because the same styles also apply (for the moment, at least) to the notification
|
|
|
|
// objects in the Special:Notifications page, which are, individually
|
2015-11-12 19:37:56 +00:00
|
|
|
// not wrapped with a NotificationItemWidget.
|
2015-08-13 00:54:16 +00:00
|
|
|
.mw-echo-state {
|
|
|
|
display: block;
|
2016-03-09 20:13:48 +00:00
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
2015-08-13 00:54:16 +00:00
|
|
|
|
|
|
|
.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;
|
|
|
|
|
2015-12-18 18:56:59 +00:00
|
|
|
.mw-echo-title {
|
|
|
|
color: @notification-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mw-echo-payload {
|
2016-01-20 21:19:54 +00:00
|
|
|
.mw-echo-ui-mixin-one-line-truncated;
|
2015-12-18 18:56:59 +00:00
|
|
|
color: @notification-body-color;
|
2016-02-15 20:55:28 +00:00
|
|
|
margin-top: 4px;
|
2015-12-18 18:56:59 +00:00
|
|
|
}
|
|
|
|
|
2015-11-19 04:10:40 +00:00
|
|
|
.mw-echo-title,
|
|
|
|
.mw-echo-payload {
|
2015-08-13 00:54:16 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-20 21:19:54 +00:00
|
|
|
.mw-echo-notification-footer {
|
2015-08-13 00:54:16 +00:00
|
|
|
color: #6D6D6D;
|
|
|
|
font-size: 11px;
|
|
|
|
margin-top: 0.2em;
|
2016-01-20 21:19:54 +00:00
|
|
|
|
|
|
|
.mw-echo-notification-footer-element {
|
|
|
|
display: inline-block;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: 15em;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
2015-08-13 00:54:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|