Connect default lines when replying in real time

This commit is contained in:
Roni Laukkarinen 2023-07-04 15:01:15 +03:00
parent deeede2e00
commit cd911cb068
3 changed files with 21 additions and 2 deletions

View File

@ -1,6 +1,7 @@
### 1.5.8rc5-nightly: 2023-07-04
* Fix regression with lists order on mobile
* Connect default lines when replying in real time
### 1.5.8rc4-nightly: 2023-07-03

View File

@ -3127,7 +3127,16 @@ body.embed .entry .detailed-status {
height: calc(100% + 32px);
}
div[tabindex="-1"] + div[tabindex="-1"] > .status__wrapper > .status-reply.status--in-thread > .status__line.status__line--full,
/* Connect default lines when replying in real time */
.layout-multiple-columns div[tabindex="-1"]:has(.status--in-thread) .status--in-thread:not(.status--first-in-thread) > .status__line {
bottom: 110px;
height: 80px;
top: auto;
width: 0;
z-index: -1;
}
.layout-multiple-columns div[tabindex="-1"] + div[tabindex="-1"] > .status__wrapper > .status-reply.status--in-thread > .status__line.status__line--full,
.layout-multiple-columns .status__line--full.status__line--first {
height: 100%;
}

View File

@ -3133,7 +3133,16 @@ body.embed .entry .detailed-status {
height: calc(100% + 32px);
}
div[tabindex="-1"] + div[tabindex="-1"] > .status__wrapper > .status-reply.status--in-thread > .status__line.status__line--full,
/* Connect default lines when replying in real time */
.layout-single-column div[tabindex="-1"]:has(.status--in-thread) .status--in-thread:not(.status--first-in-thread) > .status__line {
bottom: 110px;
height: 80px;
top: auto;
width: 0;
z-index: -1;
}
.layout-single-column div[tabindex="-1"] + div[tabindex="-1"] > .status__wrapper > .status-reply.status--in-thread > .status__line.status__line--full,
.layout-single-column .status__line--full.status__line--first {
height: 100%;
}