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:
commit
3327b2d0b6
3 changed files with 6 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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"
|
||||||
>
|
>
|
||||||
|
|
|
@ -27,4 +27,8 @@
|
||||||
.timeline-footer {
|
.timeline-footer {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.conversation-heading {
|
||||||
|
top: calc(var(--panel-heading-height) * 2);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue