2016-11-27 20:00:44 +01:00
|
|
|
@import '../../_variables.scss';
|
2017-02-24 16:32:41 +01:00
|
|
|
|
2017-02-24 17:53:53 +01:00
|
|
|
.notifications {
|
2017-04-13 15:17:57 +02:00
|
|
|
// a bit of a hack to allow scrolling below notifications
|
|
|
|
padding-bottom: 15em;
|
2016-11-27 20:00:44 +01:00
|
|
|
|
2018-08-20 19:45:54 +02:00
|
|
|
.loadmore-error {
|
2018-10-07 18:59:22 +02:00
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--text, $fallback--text);
|
2018-08-20 19:45:54 +02:00
|
|
|
}
|
|
|
|
|
2018-11-21 01:52:12 +01:00
|
|
|
.notification {
|
|
|
|
position: relative;
|
2018-11-14 17:39:17 +01:00
|
|
|
|
2018-11-21 01:52:12 +01:00
|
|
|
.notification-overlay {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
2018-11-21 16:22:05 +01:00
|
|
|
pointer-events: none;
|
2018-11-21 01:52:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&.unseen {
|
|
|
|
.notification-overlay {
|
|
|
|
background-image: linear-gradient(135deg, var(--badgeNotification, $fallback--cRed) 4px, transparent 10px)
|
|
|
|
}
|
|
|
|
}
|
2018-04-10 18:25:24 +02:00
|
|
|
}
|
|
|
|
}
|
2017-02-24 17:53:53 +01:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.notification {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
border-bottom: 1px solid;
|
2018-08-28 15:14:32 +02:00
|
|
|
border-color: $fallback--border;
|
|
|
|
border-color: var(--border, $fallback--border);
|
2017-02-24 17:53:53 +01:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.avatar-compact {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
2018-11-30 14:39:07 +01:00
|
|
|
box-shadow: var(--avatarStatusShadow);
|
2018-04-10 18:25:24 +02:00
|
|
|
border-radius: $fallback--avatarAltRadius;
|
|
|
|
border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius);
|
|
|
|
overflow: hidden;
|
|
|
|
line-height: 0;
|
2018-04-09 19:44:37 +02:00
|
|
|
|
2018-11-30 14:39:07 +01:00
|
|
|
&.better-shadow {
|
2018-12-02 06:47:55 +01:00
|
|
|
box-shadow: var(--avatarStatusShadowInset);
|
|
|
|
filter: var(--avatarStatusShadowFilter)
|
2018-11-30 14:39:07 +01:00
|
|
|
}
|
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
&.animated::before {
|
|
|
|
display: none;
|
2018-04-09 18:43:31 +02:00
|
|
|
}
|
2018-04-10 18:25:24 +02:00
|
|
|
}
|
2018-04-09 18:43:31 +02:00
|
|
|
|
2018-08-20 19:05:12 +02:00
|
|
|
&:hover .animated.avatar-compact {
|
2018-04-10 18:25:24 +02:00
|
|
|
canvas {
|
|
|
|
display: none;
|
2018-04-08 03:23:43 +02:00
|
|
|
}
|
2018-04-10 18:25:24 +02:00
|
|
|
img {
|
|
|
|
visibility: visible;
|
2018-04-09 18:43:31 +02:00
|
|
|
}
|
2018-04-10 18:25:24 +02:00
|
|
|
}
|
2018-04-09 18:43:31 +02:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.notification-usercard {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-04-09 18:43:31 +02:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.non-mention {
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
padding: 0.6em;
|
|
|
|
min-width: 0;
|
|
|
|
.avatar-container {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
.status-el {
|
|
|
|
.status {
|
|
|
|
padding: 0.25em 0;
|
|
|
|
color: $fallback--faint;
|
2018-04-15 05:02:01 +02:00
|
|
|
color: var(--faint, $fallback--faint);
|
2018-10-07 18:59:22 +02:00
|
|
|
a {
|
|
|
|
color: var(--faintLink);
|
|
|
|
}
|
2018-04-09 18:43:31 +02:00
|
|
|
}
|
2018-04-10 18:25:24 +02:00
|
|
|
padding: 0;
|
2018-04-11 18:34:40 +02:00
|
|
|
.media-body {
|
2018-04-10 18:25:24 +02:00
|
|
|
margin: 0;
|
2018-04-09 18:43:31 +02:00
|
|
|
}
|
2018-04-10 18:25:24 +02:00
|
|
|
}
|
|
|
|
}
|
2016-11-27 19:44:56 +01:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.follow-text {
|
|
|
|
padding: 0.5em 0;
|
|
|
|
}
|
2017-02-24 17:53:53 +01:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.status-el {
|
|
|
|
flex: 1;
|
|
|
|
}
|
2017-08-10 18:17:40 +02:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
time {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2017-02-24 17:53:53 +01:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.notification-right {
|
|
|
|
flex: 1;
|
|
|
|
padding-left: 0.8em;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
2017-11-25 11:57:55 +01:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.notification-details {
|
|
|
|
min-width: 0px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
line-height:18px;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
2018-04-10 21:12:59 +02:00
|
|
|
flex: 1 1 0;
|
2018-04-10 18:25:24 +02:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
2017-11-13 18:23:43 +01:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.name-and-action {
|
|
|
|
flex: 1;
|
2018-04-14 07:59:55 +02:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2018-04-10 18:25:24 +02:00
|
|
|
}
|
2017-02-24 17:53:53 +01:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.username {
|
|
|
|
font-weight: bolder;
|
2018-04-14 07:59:55 +02:00
|
|
|
max-width: 100%;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-08-20 19:05:12 +02:00
|
|
|
|
|
|
|
img {
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
vertical-align: middle;
|
|
|
|
object-fit: contain
|
|
|
|
}
|
2018-04-10 18:25:24 +02:00
|
|
|
}
|
|
|
|
.timeago {
|
|
|
|
float: right;
|
|
|
|
font-size: 12px;
|
2017-02-23 00:26:37 +01:00
|
|
|
}
|
2016-11-27 19:44:56 +01:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.icon-retweet.lit {
|
|
|
|
color: $fallback--cGreen;
|
|
|
|
color: var(--cGreen, $fallback--cGreen);
|
2017-02-24 17:53:53 +01:00
|
|
|
}
|
2017-02-27 18:21:40 +01:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.icon-user-plus.lit {
|
|
|
|
color: $fallback--cBlue;
|
|
|
|
color: var(--cBlue, $fallback--cBlue);
|
|
|
|
}
|
2018-02-03 18:32:13 +01:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.icon-reply.lit {
|
|
|
|
color: $fallback--cBlue;
|
|
|
|
color: var(--cBlue, $fallback--cBlue);
|
2018-02-03 18:32:13 +01:00
|
|
|
}
|
2017-11-13 18:23:43 +01:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.icon-star.lit {
|
|
|
|
color: orange;
|
|
|
|
color: $fallback--cOrange;
|
|
|
|
color: var(--cOrange, $fallback--cOrange);
|
|
|
|
}
|
2018-04-09 18:43:31 +02:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
.status-content {
|
|
|
|
margin: 0;
|
|
|
|
max-height: 300px;
|
|
|
|
}
|
2018-04-09 18:43:31 +02:00
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
h1 {
|
|
|
|
word-break: break-all;
|
|
|
|
margin: 0 0 0.3em;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
line-height:20px;
|
|
|
|
small {
|
|
|
|
font-weight: lighter;
|
|
|
|
}
|
2018-04-09 18:43:31 +02:00
|
|
|
}
|
|
|
|
|
2018-04-10 18:25:24 +02:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0.3em;
|
|
|
|
}
|
2018-04-09 18:43:31 +02:00
|
|
|
}
|
2018-04-10 18:25:24 +02:00
|
|
|
}
|