f05f832bff
Use more specific css rules for the emoji dimensions in the chat list status preview. Use more round em value for chat list item height. Add global html overflow and height for smoother chat navigation in the desktop Safari. Use offsetHeight instad of a computed style when setting the window height on resize. Remove margin-bottom from the last message to avoid occasional layout shift in the desktop Safari Use break-word to prevent chat message text overflow Resize and scroll the textarea when inserting a new line on ctrl+enter Remove fade transition on route change Ensure proper border radius at the bottom of the chat, remove unused border-radius Prevent the chat header "jumping" on the avatar load.
135 lines
3.4 KiB
Vue
135 lines
3.4 KiB
Vue
<template>
|
|
<div
|
|
id="app"
|
|
:style="bgAppStyle"
|
|
>
|
|
<div
|
|
id="app_bg_wrapper"
|
|
class="app-bg-wrapper"
|
|
:style="bgStyle"
|
|
/>
|
|
<MobileNav v-if="isMobileLayout" />
|
|
<nav
|
|
v-else
|
|
id="nav"
|
|
class="nav-bar container"
|
|
@click="scrollToTop()"
|
|
>
|
|
<div class="inner-nav">
|
|
<div
|
|
class="logo"
|
|
:style="logoBgStyle"
|
|
>
|
|
<div
|
|
class="mask"
|
|
:style="logoMaskStyle"
|
|
/>
|
|
<img
|
|
:src="logo"
|
|
:style="logoStyle"
|
|
>
|
|
</div>
|
|
<div class="item">
|
|
<router-link
|
|
v-if="!hideSitename"
|
|
class="site-name"
|
|
:to="{ name: 'root' }"
|
|
active-class="home"
|
|
>
|
|
{{ sitename }}
|
|
</router-link>
|
|
</div>
|
|
<div class="item right">
|
|
<search-bar
|
|
v-if="currentUser || !privateMode"
|
|
class="nav-icon mobile-hidden"
|
|
@toggled="onSearchBarToggled"
|
|
@click.stop.native
|
|
/>
|
|
<a
|
|
href="#"
|
|
class="mobile-hidden"
|
|
@click.stop="openSettingsModal"
|
|
>
|
|
<i
|
|
class="button-icon icon-cog nav-icon"
|
|
:title="$t('nav.preferences')"
|
|
/>
|
|
</a>
|
|
<a
|
|
v-if="currentUser && currentUser.role === 'admin'"
|
|
href="/pleroma/admin/#/login-pleroma"
|
|
class="mobile-hidden"
|
|
target="_blank"
|
|
><i
|
|
class="button-icon icon-gauge nav-icon"
|
|
:title="$t('nav.administration')"
|
|
/></a>
|
|
<a
|
|
v-if="currentUser"
|
|
href="#"
|
|
class="mobile-hidden"
|
|
@click.prevent="logout"
|
|
><i
|
|
class="button-icon icon-logout nav-icon"
|
|
:title="$t('login.logout')"
|
|
/></a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<div class="app-bg-wrapper app-container-wrapper" />
|
|
<div
|
|
id="content"
|
|
class="container underlay"
|
|
>
|
|
<div
|
|
class="sidebar-flexer mobile-hidden"
|
|
:style="sidebarAlign"
|
|
>
|
|
<div class="sidebar-bounds">
|
|
<div class="sidebar-scroller">
|
|
<div class="sidebar">
|
|
<user-panel />
|
|
<div v-if="!isMobileLayout">
|
|
<nav-panel />
|
|
<instance-specific-panel v-if="showInstanceSpecificPanel" />
|
|
<features-panel v-if="!currentUser && showFeaturesPanel" />
|
|
<who-to-follow-panel v-if="currentUser && suggestionsEnabled" />
|
|
<notifications v-if="currentUser" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="main">
|
|
<div
|
|
v-if="!currentUser"
|
|
class="login-hint panel panel-default"
|
|
>
|
|
<router-link
|
|
:to="{ name: 'login' }"
|
|
class="panel-body"
|
|
>
|
|
{{ $t("login.hint") }}
|
|
</router-link>
|
|
</div>
|
|
<router-view />
|
|
</div>
|
|
<media-modal />
|
|
</div>
|
|
<chat-panel
|
|
v-if="currentUser && chat"
|
|
:floating="true"
|
|
class="floating-chat mobile-hidden"
|
|
/>
|
|
<MobilePostStatusButton />
|
|
<UserReportingModal />
|
|
<PostStatusModal />
|
|
<SettingsModal />
|
|
<portal-target name="modal" />
|
|
<GlobalNoticeList />
|
|
</div>
|
|
</template>
|
|
|
|
<script src="./App.js"></script>
|
|
<style lang="scss" src="./App.scss"></style>
|