| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- @import "_variables";
- .quote {
- margin-top: 10px;
- border: solid 1px var(--dark_grey);
- border-radius: 10px;
- background-color: var(--bg_elements);
- overflow: hidden;
- pointer-events: all;
- position: relative;
- width: 100%;
- &:hover {
- border-color: var(--grey);
- }
- &.unavailable:hover {
- border-color: var(--dark_grey);
- }
- .tweet-name-row {
- padding: 6px 8px;
- margin-top: 1px;
- }
- .quote-text {
- overflow: hidden;
- white-space: pre-wrap;
- word-wrap: break-word;
- padding: 0px 8px 8px 8px;
- }
- .show-thread {
- padding: 0px 8px 6px 8px;
- margin-top: -6px;
- }
- .replying-to {
- padding: 0px 8px;
- margin: unset;
- }
- }
- .unavailable-quote {
- padding: 12px;
- display: block;
- }
- .quote-link {
- width: 100%;
- height: 100%;
- left: 0;
- top: 0;
- position: absolute;
- }
- .quote-media-container {
- max-height: 300px;
- display: flex;
- .card {
- margin: unset;
- }
- .attachments {
- border-radius: 0;
- }
- .media-gif {
- width: 100%;
- display: flex;
- justify-content: center;
- }
- .gallery-gif .attachment {
- display: flex;
- justify-content: center;
- background-color: var(--bg_color);
- video {
- height: unset;
- width: unset;
- max-height: 100%;
- max-width: 100%;
- }
- }
- .gallery-video,
- .gallery-gif {
- max-height: 300px;
- }
- .still-image img {
- max-height: 250px;
- }
- }
|