nitter/src/sass/tweet/quote.scss

95 lines
1.5 KiB
SCSS
Raw Normal View History

2019-09-13 08:44:21 +00:00
@import '_variables';
.quote {
margin-top: 10px;
border: solid 1px var(--dark_grey);
2019-09-13 08:44:21 +00:00
border-radius: 10px;
background-color: var(--bg_elements);
2020-06-01 00:22:22 +00:00
overflow: hidden;
2019-09-19 01:19:06 +00:00
pointer-events: all;
2020-06-01 00:22:22 +00:00
position: relative;
width: 100%;
2019-09-13 08:44:21 +00:00
&:hover {
border-color: var(--grey);
2019-09-13 08:44:21 +00:00
}
&.unavailable:hover {
border-color: var(--dark_grey);
2019-09-13 08:44:21 +00:00
}
2020-06-01 00:22:22 +00:00
.tweet-name-row {
2020-06-10 15:04:48 +00:00
padding: 6px 8px;
margin-top: 1px;
2020-06-01 00:22:22 +00:00
}
.quote-text {
overflow: hidden;
white-space: pre-wrap;
word-wrap: break-word;
2020-06-10 15:04:48 +00:00
padding: 0px 8px 8px 8px;
2020-06-01 00:22:22 +00:00
}
.show-thread {
2020-06-10 15:04:48 +00:00
padding: 0px 8px 6px 8px;
margin-top: -6px;
2020-06-01 00:22:22 +00:00
}
.replying-to {
2020-06-10 15:04:48 +00:00
padding: 0px 8px;
2020-06-01 00:22:22 +00:00
margin: unset;
}
2019-09-13 08:44:21 +00:00
}
.unavailable-quote {
2020-06-01 00:22:22 +00:00
padding: 12px;
2019-09-13 08:44:21 +00:00
}
.quote-link {
width: 100%;
2020-06-01 00:22:22 +00:00
height: 100%;
2019-09-13 08:44:21 +00:00
left: 0;
top: 0;
position: absolute;
2019-09-19 01:19:06 +00:00
}
2019-09-13 08:44:21 +00:00
.quote-media-container {
2020-06-01 00:22:22 +00:00
max-height: 300px;
2019-09-13 08:44:21 +00:00
display: flex;
2020-06-01 00:22:22 +00:00
.card {
margin: unset;
}
2019-09-13 08:44:21 +00:00
2020-06-01 00:22:22 +00:00
.attachments {
border-radius: 0;
}
2019-09-13 08:44:21 +00:00
2020-06-01 11:36:40 +00:00
.media-gif {
width: 100%;
display: flex;
justify-content: center;
}
2020-06-01 00:22:22 +00:00
.gallery-gif .attachment {
display: flex;
justify-content: center;
background-color: var(--bg_color);
2019-09-13 08:44:21 +00:00
2020-06-01 00:22:22 +00:00
video {
height: unset;
width: unset;
2020-11-08 03:30:38 +00:00
max-height: 100%;
max-width: 100%;
2020-06-01 00:22:22 +00:00
}
}
2019-09-13 08:44:21 +00:00
2020-06-01 00:22:22 +00:00
.gallery-video, .gallery-gif {
max-height: 300px;
}
2019-09-13 08:44:21 +00:00
2020-06-01 00:22:22 +00:00
.still-image img {
max-height: 250px
2019-09-13 08:44:21 +00:00
}
}