2016-11-27 11:00:44 -08:00
|
|
|
@import '../../_variables.scss';
|
2017-02-24 07:32:41 -08:00
|
|
|
|
2021-03-11 05:14:30 -08:00
|
|
|
.Notifications {
|
2019-05-15 10:44:35 -07:00
|
|
|
&:not(.minimal) {
|
|
|
|
// a bit of a hack to allow scrolling below notifications
|
|
|
|
padding-bottom: 15em;
|
|
|
|
}
|
2016-11-27 11:00:44 -08:00
|
|
|
|
2018-08-20 10:45:54 -07:00
|
|
|
.loadmore-error {
|
2018-10-07 09:59:22 -07:00
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--text, $fallback--text);
|
2018-08-20 10:45:54 -07:00
|
|
|
}
|
|
|
|
|
2021-03-11 05:14:30 -08:00
|
|
|
.notifications-footer {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2018-11-20 16:52:12 -08:00
|
|
|
.notification {
|
|
|
|
position: relative;
|
2018-11-14 08:39:17 -08:00
|
|
|
|
2018-11-20 16:52:12 -08:00
|
|
|
.notification-overlay {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
2018-11-21 07:22:05 -08:00
|
|
|
pointer-events: none;
|
2018-11-20 16:52:12 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
&.unseen {
|
|
|
|
.notification-overlay {
|
|
|
|
background-image: linear-gradient(135deg, var(--badgeNotification, $fallback--cRed) 4px, transparent 10px)
|
|
|
|
}
|
|
|
|
}
|
2018-04-10 09:25:24 -07:00
|
|
|
}
|
|
|
|
}
|
2017-02-24 08:53:53 -08:00
|
|
|
|
2018-04-10 09:25:24 -07:00
|
|
|
.notification {
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-bottom: 1px solid;
|
2018-08-28 06:14:32 -07:00
|
|
|
border-color: $fallback--border;
|
|
|
|
border-color: var(--border, $fallback--border);
|
2020-06-06 13:08:52 -07:00
|
|
|
word-wrap: break-word;
|
|
|
|
word-break: break-word;
|
2017-02-24 08:53:53 -08:00
|
|
|
|
2020-08-25 01:40:02 -07:00
|
|
|
&:hover .animated.Avatar {
|
2018-04-10 09:25:24 -07:00
|
|
|
canvas {
|
|
|
|
display: none;
|
2018-04-07 18:23:43 -07:00
|
|
|
}
|
2018-04-10 09:25:24 -07:00
|
|
|
img {
|
|
|
|
visibility: visible;
|
2018-04-09 09:43:31 -07:00
|
|
|
}
|
2018-04-10 09:25:24 -07:00
|
|
|
}
|
2018-04-09 09:43:31 -07:00
|
|
|
|
2018-04-10 09:25:24 -07:00
|
|
|
.non-mention {
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
padding: 0.6em;
|
|
|
|
min-width: 0;
|
2020-06-13 03:09:55 -07:00
|
|
|
|
2018-04-10 09:25:24 -07:00
|
|
|
.avatar-container {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
2020-06-13 03:09:55 -07:00
|
|
|
|
2020-07-27 15:27:11 -07:00
|
|
|
--link: var(--faintLink);
|
|
|
|
--text: var(--faint);
|
2018-04-10 09:25:24 -07:00
|
|
|
}
|
2016-11-27 10:44:56 -08:00
|
|
|
|
2020-05-02 00:19:47 -07:00
|
|
|
.follow-request-accept {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--text, $fallback--text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.follow-request-reject {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $fallback--cRed;
|
|
|
|
color: var(--cRed, $fallback--cRed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-10 07:00:10 -08:00
|
|
|
.follow-text, .move-text {
|
2018-04-10 09:25:24 -07:00
|
|
|
padding: 0.5em 0;
|
2020-03-14 12:41:38 -07:00
|
|
|
overflow-wrap: break-word;
|
2020-04-24 21:04:39 -07:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
.follow-name {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2018-04-10 09:25:24 -07:00
|
|
|
}
|
2017-02-24 08:53:53 -08:00
|
|
|
|
2020-07-27 15:27:11 -07:00
|
|
|
/* TODO cleanup this */
|
|
|
|
.Status {
|
2018-04-10 09:25:24 -07:00
|
|
|
flex: 1;
|
|
|
|
}
|
2017-08-10 09:17:40 -07:00
|
|
|
|
2018-04-10 09:25:24 -07:00
|
|
|
time {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2017-02-24 08:53:53 -08:00
|
|
|
|
2018-04-10 09:25:24 -07:00
|
|
|
.notification-right {
|
|
|
|
flex: 1;
|
|
|
|
padding-left: 0.8em;
|
|
|
|
min-width: 0;
|
2020-07-08 04:11:42 -07:00
|
|
|
|
|
|
|
.timeago {
|
|
|
|
min-width: 3em;
|
|
|
|
text-align: right;
|
|
|
|
}
|
2018-04-10 09:25:24 -07:00
|
|
|
}
|
2017-11-25 02:57:55 -08:00
|
|
|
|
2020-02-11 04:24:51 -08:00
|
|
|
.emoji-reaction-emoji {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2018-04-10 09:25:24 -07:00
|
|
|
.notification-details {
|
|
|
|
min-width: 0px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
line-height:18px;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
2018-04-10 12:12:59 -07:00
|
|
|
flex: 1 1 0;
|
2018-04-10 09:25:24 -07:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
2019-02-11 19:35:24 -08:00
|
|
|
justify-content: space-between;
|
2017-11-13 09:23:43 -08:00
|
|
|
|
2018-04-10 09:25:24 -07:00
|
|
|
.name-and-action {
|
|
|
|
flex: 1;
|
2018-04-13 22:59:55 -07:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2018-04-10 09:25:24 -07:00
|
|
|
}
|
2017-02-24 08:53:53 -08:00
|
|
|
|
2018-04-10 09:25:24 -07:00
|
|
|
.username {
|
|
|
|
font-weight: bolder;
|
2018-04-13 22:59:55 -07:00
|
|
|
max-width: 100%;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-08-20 10:05:12 -07:00
|
|
|
|
|
|
|
img {
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
vertical-align: middle;
|
|
|
|
object-fit: contain
|
|
|
|
}
|
2018-04-10 09:25:24 -07:00
|
|
|
}
|
2019-02-11 19:35:24 -08:00
|
|
|
|
2019-03-03 11:15:53 -08:00
|
|
|
.timeago {
|
|
|
|
margin-right: .2em;
|
|
|
|
}
|
|
|
|
|
2018-04-10 09:25:24 -07:00
|
|
|
.status-content {
|
|
|
|
margin: 0;
|
|
|
|
max-height: 300px;
|
|
|
|
}
|
2018-04-09 09:43:31 -07:00
|
|
|
|
2018-04-10 09:25:24 -07: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 09:43:31 -07:00
|
|
|
}
|
|
|
|
|
2018-04-10 09:25:24 -07:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0.3em;
|
|
|
|
}
|
2018-04-09 09:43:31 -07:00
|
|
|
}
|
2018-04-10 09:25:24 -07:00
|
|
|
}
|