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