2019-09-13 08:44:21 +00:00
|
|
|
@import '_variables';
|
|
|
|
@import '_mixins';
|
|
|
|
@import 'thread';
|
|
|
|
@import 'media';
|
|
|
|
@import 'video';
|
2019-12-06 14:15:56 +00:00
|
|
|
@import 'embed';
|
2019-09-13 08:44:21 +00:00
|
|
|
@import 'card';
|
|
|
|
@import 'poll';
|
|
|
|
@import 'quote';
|
|
|
|
|
2019-09-13 17:57:27 +00:00
|
|
|
.tweet-body {
|
2019-09-13 08:44:21 +00:00
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
margin-left: 58px;
|
2019-09-19 01:19:06 +00:00
|
|
|
pointer-events: none;
|
|
|
|
z-index: 1;
|
2019-09-13 08:44:21 +00:00
|
|
|
}
|
|
|
|
|
2019-09-13 17:57:27 +00:00
|
|
|
.tweet-content {
|
|
|
|
font-family: $font_3;
|
2020-11-08 01:50:03 +00:00
|
|
|
line-height: 1.3em;
|
2019-09-19 01:19:06 +00:00
|
|
|
pointer-events: all;
|
2020-11-07 23:41:12 +00:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tweet-bidi {
|
|
|
|
display: block !important;
|
2019-09-13 17:57:27 +00:00
|
|
|
}
|
|
|
|
|
2019-09-13 08:44:21 +00:00
|
|
|
.tweet-header {
|
|
|
|
padding: 0;
|
|
|
|
vertical-align: bottom;
|
|
|
|
flex-basis: 100%;
|
|
|
|
margin-bottom: .2em;
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
word-break: break-all;
|
|
|
|
max-width: 100%;
|
2019-09-19 01:19:06 +00:00
|
|
|
pointer-events: all;
|
2019-09-13 08:44:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tweet-name-row {
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fullname-and-username {
|
|
|
|
display: flex;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fullname {
|
|
|
|
@include ellipsis;
|
|
|
|
flex-shrink: 2;
|
|
|
|
max-width: 80%;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 700;
|
2019-10-23 09:15:57 +00:00
|
|
|
color: var(--fg_color);
|
2019-09-13 08:44:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.username {
|
|
|
|
@include ellipsis;
|
|
|
|
min-width: 1.6em;
|
|
|
|
margin-left: .4em;
|
|
|
|
word-wrap: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tweet-date {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
2019-10-23 11:58:10 +00:00
|
|
|
.tweet-date a, .username, .show-more a {
|
|
|
|
color: var(--fg_dark);
|
|
|
|
}
|
|
|
|
|
2019-10-08 11:28:57 +00:00
|
|
|
.tweet-published {
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 5px;
|
2019-10-23 09:15:57 +00:00
|
|
|
color: var(--grey);
|
2019-10-08 11:41:37 +00:00
|
|
|
pointer-events: all;
|
2019-10-08 11:28:57 +00:00
|
|
|
}
|
|
|
|
|
2019-09-13 08:44:21 +00:00
|
|
|
.tweet-avatar {
|
|
|
|
display: contents !important;
|
|
|
|
|
|
|
|
img {
|
|
|
|
float: left;
|
|
|
|
margin-top: 3px;
|
|
|
|
margin-left: -58px;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
2019-10-26 14:37:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-13 21:54:22 +00:00
|
|
|
.avatar {
|
2022-01-14 17:44:09 +00:00
|
|
|
position: absolute;
|
|
|
|
|
2022-01-13 21:54:22 +00:00
|
|
|
&.round {
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mini {
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-top: -1px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
2020-06-10 15:04:48 +00:00
|
|
|
}
|
|
|
|
|
2022-01-14 17:44:09 +00:00
|
|
|
.tweet-embed {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
height: 100%;
|
2022-01-14 17:49:36 +00:00
|
|
|
|
2022-01-14 18:32:50 +00:00
|
|
|
.tweet-content {
|
|
|
|
font-size: 18px
|
|
|
|
}
|
2022-01-14 17:44:09 +00:00
|
|
|
|
|
|
|
.tweet-body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
max-height: calc(100vh - 0.75em * 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-26 14:37:58 +00:00
|
|
|
.attribution {
|
|
|
|
display: flex;
|
|
|
|
pointer-events: all;
|
2020-06-10 15:04:48 +00:00
|
|
|
margin: 5px 0;
|
2019-10-26 14:37:58 +00:00
|
|
|
|
|
|
|
strong {
|
|
|
|
color: var(--fg_color);
|
2019-09-13 08:44:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-21 04:07:50 +00:00
|
|
|
.media-tag-block {
|
|
|
|
padding-top: 5px;
|
|
|
|
pointer-events: all;
|
|
|
|
color: var(--fg_faded);
|
|
|
|
|
|
|
|
.icon-container {
|
|
|
|
padding-right: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-tag, .icon-container {
|
|
|
|
color: var(--fg_faded);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-container .media-tag-block {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
2019-12-21 04:44:58 +00:00
|
|
|
.tweet-geo {
|
|
|
|
color: var(--fg_faded);
|
|
|
|
}
|
|
|
|
|
2019-09-13 08:44:21 +00:00
|
|
|
.replying-to {
|
2019-10-23 11:58:10 +00:00
|
|
|
color: var(--fg_faded);
|
2019-09-13 08:44:21 +00:00
|
|
|
margin: -2px 0 4px;
|
2019-09-20 23:08:30 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
2019-09-13 08:44:21 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 22:59:13 +00:00
|
|
|
.retweet-header, .pinned, .tweet-stats {
|
2019-09-13 08:44:21 +00:00
|
|
|
align-content: center;
|
2019-10-23 09:15:57 +00:00
|
|
|
color: var(--grey);
|
2019-09-13 08:44:21 +00:00
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 22px;
|
|
|
|
|
|
|
|
span {
|
|
|
|
@include ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-23 22:59:13 +00:00
|
|
|
.retweet-header {
|
2019-09-13 08:44:21 +00:00
|
|
|
margin-top: -5px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tweet-stats {
|
|
|
|
margin-bottom: -3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tweet-stat {
|
|
|
|
padding-top: 5px;
|
2022-01-05 12:10:02 +00:00
|
|
|
min-width: 1em;
|
2022-01-05 12:27:52 +00:00
|
|
|
margin-right: 0.8em;
|
2019-09-13 08:44:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.show-thread {
|
|
|
|
display: block;
|
2019-09-19 01:51:15 +00:00
|
|
|
pointer-events: all;
|
2019-12-21 04:44:58 +00:00
|
|
|
padding-top: 2px;
|
2019-09-13 08:44:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.unavailable-box {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 12px;
|
2019-10-23 09:15:57 +00:00
|
|
|
border: solid 1px var(--dark_grey);
|
2021-08-21 15:13:38 +00:00
|
|
|
box-sizing: border-box;
|
2019-09-13 08:44:21 +00:00
|
|
|
border-radius: 10px;
|
2019-10-23 09:15:57 +00:00
|
|
|
background-color: var(--bg_color);
|
2021-12-29 05:41:00 +00:00
|
|
|
z-index: 2;
|
2019-09-13 08:44:21 +00:00
|
|
|
}
|
2019-09-19 01:19:06 +00:00
|
|
|
|
|
|
|
.tweet-link {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
&:hover {
|
2019-10-23 09:15:57 +00:00
|
|
|
background-color: var(--bg_hover);
|
2019-09-19 01:19:06 +00:00
|
|
|
}
|
|
|
|
}
|