2016-11-27 19:00:44 +00:00
|
|
|
@import '../../_variables.scss';
|
2017-02-24 15:32:41 +00:00
|
|
|
|
2017-02-24 16:53:53 +00:00
|
|
|
.notifications {
|
2019-05-15 17:44:35 +00:00
|
|
|
&:not(.minimal) {
|
|
|
|
// a bit of a hack to allow scrolling below notifications
|
|
|
|
padding-bottom: 15em;
|
|
|
|
}
|
2016-11-27 19:00:44 +00:00
|
|
|
|
2018-08-20 17:45:54 +00:00
|
|
|
.loadmore-error {
|
2018-10-07 16:59:22 +00:00
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--text, $fallback--text);
|
2018-08-20 17:45:54 +00:00
|
|
|
}
|
|
|
|
|
2018-11-21 00:52:12 +00:00
|
|
|
.notification {
|
|
|
|
position: relative;
|
2018-11-14 16:39:17 +00:00
|
|
|
|
2018-11-21 00:52:12 +00:00
|
|
|
.notification-overlay {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
2018-11-21 15:22:05 +00:00
|
|
|
pointer-events: none;
|
2018-11-21 00:52:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.unseen {
|
|
|
|
.notification-overlay {
|
|
|
|
background-image: linear-gradient(135deg, var(--badgeNotification, $fallback--cRed) 4px, transparent 10px)
|
|
|
|
}
|
|
|
|
}
|
2018-04-10 16:25:24 +00:00
|
|
|
}
|
|
|
|
}
|
2017-02-24 16:53:53 +00:00
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
.notification {
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-bottom: 1px solid;
|
2018-08-28 13:14:32 +00:00
|
|
|
border-color: $fallback--border;
|
|
|
|
border-color: var(--border, $fallback--border);
|
2017-02-24 16:53:53 +00:00
|
|
|
|
2019-02-02 20:33:02 +00:00
|
|
|
&:hover .animated.avatar {
|
2018-04-10 16:25:24 +00:00
|
|
|
canvas {
|
|
|
|
display: none;
|
2018-04-08 01:23:43 +00:00
|
|
|
}
|
2018-04-10 16:25:24 +00:00
|
|
|
img {
|
|
|
|
visibility: visible;
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2018-04-10 16:25:24 +00:00
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
|
2019-09-06 15:15:22 +00:00
|
|
|
.muted {
|
|
|
|
padding: .25em .6em;
|
|
|
|
}
|
|
|
|
|
2018-04-10 16:25:24 +00: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 03:02:01 +00:00
|
|
|
color: var(--faint, $fallback--faint);
|
2018-10-07 16:59:22 +00:00
|
|
|
a {
|
|
|
|
color: var(--faintLink);
|
|
|
|
}
|
2020-01-27 23:29:20 +00:00
|
|
|
.status-content a {
|
|
|
|
color: var(--postFaintLink);
|
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2018-04-10 16:25:24 +00:00
|
|
|
padding: 0;
|
2018-04-11 16:34:40 +00:00
|
|
|
.media-body {
|
2018-04-10 16:25:24 +00:00
|
|
|
margin: 0;
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2018-04-10 16:25:24 +00:00
|
|
|
}
|
|
|
|
}
|
2016-11-27 18:44:56 +00:00
|
|
|
|
2019-12-10 15:00:10 +00:00
|
|
|
.follow-text, .move-text {
|
2018-04-10 16:25:24 +00:00
|
|
|
padding: 0.5em 0;
|
|
|
|
}
|
2017-02-24 16:53:53 +00:00
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
.status-el {
|
|
|
|
flex: 1;
|
|
|
|
}
|
2017-08-10 16:17:40 +00:00
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
time {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2017-02-24 16:53:53 +00:00
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
.notification-right {
|
|
|
|
flex: 1;
|
|
|
|
padding-left: 0.8em;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
2017-11-25 10:57:55 +00:00
|
|
|
|
2020-02-11 12:24:51 +00:00
|
|
|
.emoji-reaction-emoji {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
.notification-details {
|
|
|
|
min-width: 0px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
line-height:18px;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
2018-04-10 19:12:59 +00:00
|
|
|
flex: 1 1 0;
|
2018-04-10 16:25:24 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
2019-02-12 03:35:24 +00:00
|
|
|
justify-content: space-between;
|
2017-11-13 17:23:43 +00:00
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
.name-and-action {
|
|
|
|
flex: 1;
|
2018-04-14 05:59:55 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2018-04-10 16:25:24 +00:00
|
|
|
}
|
2017-02-24 16:53:53 +00:00
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
.username {
|
|
|
|
font-weight: bolder;
|
2018-04-14 05:59:55 +00:00
|
|
|
max-width: 100%;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-08-20 17:05:12 +00:00
|
|
|
|
|
|
|
img {
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
vertical-align: middle;
|
|
|
|
object-fit: contain
|
|
|
|
}
|
2018-04-10 16:25:24 +00:00
|
|
|
}
|
2019-02-12 03:35:24 +00:00
|
|
|
|
2019-03-03 19:15:53 +00:00
|
|
|
.timeago {
|
|
|
|
margin-right: .2em;
|
|
|
|
}
|
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
.icon-retweet.lit {
|
|
|
|
color: $fallback--cGreen;
|
|
|
|
color: var(--cGreen, $fallback--cGreen);
|
2017-02-24 16:53:53 +00:00
|
|
|
}
|
2017-02-27 17:21:40 +00:00
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
.icon-user-plus.lit {
|
|
|
|
color: $fallback--cBlue;
|
|
|
|
color: var(--cBlue, $fallback--cBlue);
|
|
|
|
}
|
2018-02-03 17:32:13 +00:00
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
.icon-reply.lit {
|
|
|
|
color: $fallback--cBlue;
|
|
|
|
color: var(--cBlue, $fallback--cBlue);
|
2018-02-03 17:32:13 +00:00
|
|
|
}
|
2017-11-13 17:23:43 +00:00
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
.icon-star.lit {
|
|
|
|
color: orange;
|
|
|
|
color: $fallback--cOrange;
|
|
|
|
color: var(--cOrange, $fallback--cOrange);
|
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
|
2019-12-10 15:00:10 +00:00
|
|
|
.icon-arrow-curved.lit {
|
|
|
|
color: $fallback--cBlue;
|
|
|
|
color: var(--cBlue, $fallback--cBlue);
|
|
|
|
}
|
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
.status-content {
|
|
|
|
margin: 0;
|
|
|
|
max-height: 300px;
|
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
|
2018-04-10 16:25:24 +00: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 16:43:31 +00:00
|
|
|
}
|
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0.3em;
|
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
}
|
2018-04-10 16:25:24 +00:00
|
|
|
}
|