forked from AkkomaGang/akkoma-fe
fix for chat shadow
This commit is contained in:
parent
df18a74adc
commit
4f617a7293
4 changed files with 13 additions and 3 deletions
|
@ -82,8 +82,11 @@ export default {
|
|||
!this.$store.getters.mergedConfig.hideISP &&
|
||||
this.$store.state.instance.instanceSpecificPanelContent
|
||||
},
|
||||
isChats () {
|
||||
return this.$route.name === 'chat' || this.$route.name === 'chats'
|
||||
},
|
||||
newPostButtonShown () {
|
||||
if (this.$route.name === 'chat' || this.$route.name === 'chats') return false
|
||||
if (this.isChats) return false
|
||||
return this.$store.getters.mergedConfig.alwaysShowNewPostButton || this.layoutType === 'mobile'
|
||||
},
|
||||
showFeaturesPanel () { return this.$store.state.instance.showFeaturesPanel },
|
||||
|
|
|
@ -207,6 +207,11 @@ nav {
|
|||
z-index: 2;
|
||||
}
|
||||
|
||||
&.-full-height {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
&.-scrollable {
|
||||
--___paddingIncrease: calc(var(--columnGap) / 2);
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
<div id="notifs-sidebar" />
|
||||
</template>
|
||||
</div>
|
||||
<div id="main-scroller" class="column main">
|
||||
<div id="main-scroller" class="column main" :class="{ '-full-height': isChats }">
|
||||
<div
|
||||
v-if="!currentUser"
|
||||
class="login-hint panel panel-default"
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
margin: 0 0 0 0;
|
||||
border-radius: 10px 10px 0 0;
|
||||
border-radius: var(--panelRadius, 10px) var(--panelRadius, 10px) 0 0;
|
||||
margin-bottom: calc(var(--___columnMargin) * -1);
|
||||
padding-bottom: var(--___columnMargin);
|
||||
|
||||
&::after {
|
||||
border-radius: 0;
|
||||
|
@ -40,7 +42,7 @@
|
|||
bottom: 0;
|
||||
background-color: $fallback--bg;
|
||||
background-color: var(--bg, $fallback--bg);
|
||||
z-index: 10;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.chat-view-heading {
|
||||
|
|
Loading…
Reference in a new issue