| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- @import '_variables';
- @import '_mixins';
- .conversation {
- @include panel(100%, 600px);
- .show-more {
- margin-bottom: 10px;
- }
- }
- .main-thread {
- margin-bottom: 20px;
- background-color: var(--bg_panel);
- }
- .main-tweet, .replies {
- padding-top: 50px;
- margin-top: -50px;
- }
- .main-tweet .tweet-content {
- font-size: 18px;
- }
- @media(max-width: 600px) {
- .main-tweet .tweet-content {
- font-size: 16px;
- }
- }
- .reply {
- background-color: var(--bg_panel);
- margin-bottom: 10px;
- }
- .thread-line {
- .timeline-item::before,
- &.timeline-item::before {
- background: var(--accent_dark);
- content: '';
- position: relative;
- min-width: 3px;
- width: 3px;
- left: 26px;
- border-radius: 2px;
- margin-left: -3px;
- margin-bottom: 37px;
- top: 56px;
- z-index: 1;
- pointer-events: none;
- }
- .with-header:not(:first-child)::after {
- background: var(--accent_dark);
- content: '';
- position: relative;
- float: left;
- min-width: 3px;
- width: 3px;
- right: calc(100% - 26px);
- border-radius: 2px;
- margin-left: -3px;
- margin-bottom: 37px;
- bottom: 10px;
- height: 30px;
- z-index: 1;
- pointer-events: none;
- }
- .unavailable::before {
- top: 48px;
- margin-bottom: 28px;
- }
- .more-replies::before {
- content: '...';
- background: unset;
- color: var(--more_replies_dots);
- font-weight: bold;
- font-size: 20px;
- line-height: 0.25em;
- left: 1.2em;
- width: 5px;
- top: 2px;
- margin-bottom: 0;
- margin-left: -2.5px;
- }
- .earlier-replies {
- padding-bottom: 0;
- margin-bottom: -5px;
- }
- }
- .timeline-item.thread-last::before {
- background: unset;
- min-width: unset;
- width: 0;
- margin: 0;
- }
- .more-replies {
- padding-top: 0.3em !important;
- }
- .more-replies-text {
- @include ellipsis;
- display: block;
- margin-left: 58px;
- padding: 7px 0;
- }
|