fix for chat shadow

This commit is contained in:
Henry Jameson 2022-04-11 23:30:41 +03:00
parent df18a74adc
commit 4f617a7293
4 changed files with 13 additions and 3 deletions

View File

@ -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 },

View File

@ -207,6 +207,11 @@ nav {
z-index: 2;
}
&.-full-height {
margin-top: 0;
margin-bottom: 0;
}
&.-scrollable {
--___paddingIncrease: calc(var(--columnGap) / 2);

View File

@ -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"

View File

@ -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 {