only flatten top of post body textarea if subject line is visible

This commit is contained in:
RiedleroD 2024-06-16 16:26:44 +02:00 committed by Jeder
parent b3164766f0
commit 8e63c228be

View file

@ -600,8 +600,11 @@
height: calc(var(--post-line-height) * 1em); height: calc(var(--post-line-height) * 1em);
min-height: calc(var(--post-line-height) * 1em); min-height: calc(var(--post-line-height) * 1em);
resize: none; resize: none;
border-top-left-radius: 0;
border-top-right-radius: 0; &.-has-subject {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
&.-has-subject { &.-has-subject {
border-top-left-radius: 0; border-top-left-radius: 0;