2020-05-22 01:33:55 +00:00
|
|
|
.detailed-status {
|
2022-03-21 18:09:01 +00:00
|
|
|
// padding: 14px 10px;
|
2020-05-22 01:33:55 +00:00
|
|
|
|
|
|
|
&--flex {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-start;
|
|
|
|
|
2022-05-31 12:55:31 +00:00
|
|
|
.status__content {
|
2020-05-22 01:33:55 +00:00
|
|
|
flex: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status__content {
|
|
|
|
font-size: 19px;
|
|
|
|
line-height: 24px;
|
|
|
|
|
|
|
|
.emojione {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
margin: -1px 0 0;
|
|
|
|
}
|
|
|
|
|
2021-07-09 18:51:41 +00:00
|
|
|
&--big {
|
|
|
|
img.emojione {
|
|
|
|
width: 56px;
|
|
|
|
height: 56px;
|
|
|
|
}
|
|
|
|
}
|
2020-05-22 01:33:55 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 02:53:25 +00:00
|
|
|
.video-player,
|
|
|
|
.audio-player {
|
2020-05-22 01:33:55 +00:00
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-14 19:14:13 +00:00
|
|
|
.detailed-status__timestamp {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.svg-icon {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2020-07-06 21:35:27 +00:00
|
|
|
|
2021-10-14 19:14:13 +00:00
|
|
|
svg {
|
|
|
|
stroke-width: 1.3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-18 18:42:48 +00:00
|
|
|
.svg-icon {
|
2021-10-14 19:14:13 +00:00
|
|
|
margin-right: 5px;
|
2020-07-06 21:35:27 +00:00
|
|
|
}
|
2020-05-22 01:33:55 +00:00
|
|
|
}
|
|
|
|
|
2020-05-23 17:18:13 +00:00
|
|
|
.detailed-status__wrapper {
|
|
|
|
position: relative;
|
|
|
|
}
|
2020-06-03 02:11:01 +00:00
|
|
|
|
|
|
|
.detailed-status__display-name {
|
2020-06-07 03:55:00 +00:00
|
|
|
color: var(--primary-text-color--faint);
|
2020-06-03 02:11:01 +00:00
|
|
|
display: flex;
|
|
|
|
line-height: 24px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
strong,
|
|
|
|
span {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-size: 16px;
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
}
|
|
|
|
|
2020-09-28 15:25:12 +00:00
|
|
|
span.hover-ref-wrapper {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2020-06-03 02:11:01 +00:00
|
|
|
.display-name__account {
|
|
|
|
display: block;
|
2021-07-14 21:13:53 +00:00
|
|
|
margin-top: -5px;
|
2020-06-03 02:11:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.detailed-status__display-avatar {
|
|
|
|
float: left;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2020-09-03 01:49:40 +00:00
|
|
|
|
2021-10-06 22:50:43 +00:00
|
|
|
.thread {
|
2022-07-22 17:30:16 +00:00
|
|
|
@apply bg-white dark:bg-primary-900 p-4 shadow-xl dark:shadow-none sm:p-6 sm:rounded-xl;
|
2021-10-09 16:42:31 +00:00
|
|
|
|
2021-10-06 22:50:43 +00:00
|
|
|
&__status {
|
2022-04-23 17:20:25 +00:00
|
|
|
@apply relative pb-4;
|
2021-10-08 16:53:15 +00:00
|
|
|
|
2022-03-21 18:09:01 +00:00
|
|
|
.status__wrapper {
|
|
|
|
@apply shadow-none p-0;
|
2021-10-08 16:53:15 +00:00
|
|
|
}
|
2022-03-21 18:09:01 +00:00
|
|
|
}
|
2021-12-30 11:31:09 +00:00
|
|
|
|
2022-04-23 17:20:25 +00:00
|
|
|
.status__content-wrapper {
|
2022-03-21 18:09:01 +00:00
|
|
|
padding-left: calc(42px + 12px);
|
2021-10-09 16:42:31 +00:00
|
|
|
}
|
|
|
|
|
2022-03-21 18:09:01 +00:00
|
|
|
// &__descendants &__status:first-child {
|
|
|
|
// margin-top: 10px;
|
2021-12-30 11:31:09 +00:00
|
|
|
|
2022-03-21 18:09:01 +00:00
|
|
|
// .status__wrapper--filtered {
|
|
|
|
// margin-top: -10px;
|
|
|
|
// }
|
|
|
|
// }
|
2021-10-09 16:42:31 +00:00
|
|
|
|
2022-03-21 18:09:01 +00:00
|
|
|
// &__status--focused:first-child,
|
|
|
|
// &__ancestors &__status:first-child {
|
|
|
|
// margin-top: 10px;
|
2021-10-06 22:50:43 +00:00
|
|
|
|
2022-03-21 18:09:01 +00:00
|
|
|
// .status__wrapper--filtered {
|
|
|
|
// margin-top: -10px;
|
|
|
|
// }
|
|
|
|
// }
|
2021-10-06 22:50:43 +00:00
|
|
|
|
2022-03-21 18:09:01 +00:00
|
|
|
// &__descendants &__status:last-child {
|
|
|
|
// margin-bottom: 10px;
|
2021-10-06 22:50:43 +00:00
|
|
|
|
2022-03-21 18:09:01 +00:00
|
|
|
// .status__wrapper--filtered {
|
|
|
|
// margin-bottom: -10px;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
&__connector {
|
2022-07-22 17:30:16 +00:00
|
|
|
@apply bg-gray-200 dark:bg-primary-800 absolute w-0.5 left-5 hidden;
|
2022-03-21 18:09:01 +00:00
|
|
|
|
|
|
|
&--bottom {
|
|
|
|
@apply block;
|
2022-04-23 17:20:25 +00:00
|
|
|
height: calc(100% - 42px - 8px - 1rem);
|
2022-03-21 18:09:01 +00:00
|
|
|
top: calc(12px + 42px);
|
2021-10-06 22:50:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-11-04 01:58:31 +00:00
|
|
|
|
|
|
|
.thread {
|
|
|
|
.ptr,
|
|
|
|
.ptr__children {
|
|
|
|
background: var(--foreground-color) !important;
|
|
|
|
border-radius: 10px;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
|
|
|
|
@media screen and (max-width: 580px) {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|