From 6f1bdf79cd3b5735a70dfab49df4e7d8db2a9ab8 Mon Sep 17 00:00:00 2001 From: Freeplay Date: Mon, 5 Jun 2023 15:07:04 -0400 Subject: [PATCH] fix collapsed height --- packages/client/src/components/MkSubNoteContent.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/client/src/components/MkSubNoteContent.vue b/packages/client/src/components/MkSubNoteContent.vue index 8694dacd2d..93f6d55675 100644 --- a/packages/client/src/components/MkSubNoteContent.vue +++ b/packages/client/src/components/MkSubNoteContent.vue @@ -213,8 +213,8 @@ const isLong = !props.detailedView && ((props.note.cw == null && props.note.text != null && - (props.note.text.split("\n").length > 9 || - props.note.text.length > 500)) || + (props.note.text.split("\n").length > 10 || + props.note.text.length > 800)) || props.note.files.length > 4); const collapsed = $ref(props.note.cw == null && isLong); @@ -340,7 +340,7 @@ function focusFooter(ev) { &.collapsed, &.showContent { position: relative; - max-height: calc(9em + 50px); + max-height: calc(15em + 100px); > .body { max-height: inherit; mask: linear-gradient(black calc(100% - 64px), transparent); @@ -360,7 +360,7 @@ function focusFooter(ev) { } &.collapsed { &.manyImages { - max-height: calc(9em + 200px); + max-height: calc(15em + 250px); } > .body { box-sizing: border-box;