Fix regression with status-line full being zero height

This commit is contained in:
Roni Laukkarinen 2023-07-04 17:19:19 +03:00
parent 4498dfc17f
commit 6e45a88949
3 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@
* Fix the thread line stub when replying in real time
* Fix regression with missing border in detailed status
* Fix threaded line overlapping detailed status
* Fix regression with status-line full being zero height
### 1.5.8rc4-nightly: 2023-07-03

View File

@ -3128,7 +3128,7 @@ body.embed .entry .detailed-status {
}
/* 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 {
.layout-multiple-columns div[tabindex="-1"]:has(.status--in-thread) .status--in-thread:not(.status--first-in-thread) > .status__line:not(.status__line--full) {
height: 0;
}

View File

@ -3134,7 +3134,7 @@ body.embed .entry .detailed-status {
}
/* 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 {
.layout-single-column div[tabindex="-1"]:has(.status--in-thread) .status--in-thread:not(.status--first-in-thread) > .status__line:not(.status__line--full) {
height: 0;
}