Merge branch 'threecolumn' into shigusegubu-vue3

* threecolumn:
  fixate conversation heading
  fix overflow that sometimes happens in sidebar due to too wide file upload element
This commit is contained in:
Henry Jameson 2022-04-20 00:01:27 +03:00
commit 3327b2d0b6
3 changed files with 6 additions and 2 deletions

View file

@ -7,7 +7,7 @@
> >
<div <div
v-if="isExpanded" v-if="isExpanded"
class="panel-heading conversation-heading" class="panel-heading conversation-heading -sticky"
> >
<span class="title"> {{ $t('timeline.conversation') }} </span> <span class="title"> {{ $t('timeline.conversation') }} </span>
<button <button

View file

@ -19,7 +19,7 @@
v-if="uploadReady" v-if="uploadReady"
:disabled="disabled" :disabled="disabled"
type="file" type="file"
style="position: fixed; top: -100em" style="position: fixed; top: -100em; max-width: 0; max-height: 0"
multiple="true" multiple="true"
@change="change" @change="change"
> >

View file

@ -27,4 +27,8 @@
.timeline-footer { .timeline-footer {
border: none; border: none;
} }
.conversation-heading {
top: calc(var(--panel-heading-height) * 2);
}
} }