Connect default lines when replying in real time
This commit is contained in:
parent
deeede2e00
commit
cd911cb068
@ -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
|
||||
|
||||
|
@ -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%;
|
||||
}
|
||||
|
@ -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%;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user