Make nav panel icon margin optional

This commit is contained in:
eris 2022-08-07 05:42:36 +00:00 committed by Sam Therapy
parent 20064ee6f7
commit 058b6b6182
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
7 changed files with 22 additions and 3 deletions

View File

@ -87,7 +87,9 @@ export default {
showNavShortcuts () {
return this.mergedConfig.showNavShortcuts
},
showWiderShortcuts () {
return this.mergedConfig.showWiderShortcuts
},
hideSiteFavicon () {
return this.mergedConfig.hideSiteFavicon
},

View File

@ -115,7 +115,7 @@
}
.nav-icon {
margin-left: 0.7em;
margin-left: 0.2em;
width: 2em;
height: 100%;
text-align: center;
@ -138,6 +138,12 @@
}
}
.-wide {
.nav-icon:not(.nav-icon-logout) {
margin-left: 0.7em;
}
}
.left {
padding-left: 5px;
display: flex;

View File

@ -5,7 +5,10 @@
:class="{ '-logoLeft': logoLeft }"
@click="scrollToTop()"
>
<div class="inner-nav">
<div
class="inner-nav"
:class="{ '-wide': showWiderShortcuts }"
>
<div class="item nav-left-wrapper">
<router-link
class="site-brand"

View File

@ -40,6 +40,11 @@
{{ $t('settings.show_nav_shortcuts') }}
</BooleanSetting>
</li>
<li>
<BooleanSetting path="showWiderShortcuts">
{{ $t('settings.show_wider_shortcuts') }}
</BooleanSetting>
</li>
<li>
<BooleanSetting path="stopGifs">
{{ $t('settings.stop_gifs') }}

View File

@ -579,6 +579,7 @@
"show_admin_badge": "Show \"Admin\" badge in my profile",
"show_moderator_badge": "Show \"Moderator\" badge in my profile",
"show_nav_shortcuts": "Show extra navigation shortcuts in top panel",
"show_wider_shortcuts": "Show wider gap between top panel shortcuts",
"nsfw_clickthrough": "Hide sensitive/NSFW media",
"oauth_tokens": "OAuth tokens",
"token": "Token",

View File

@ -41,6 +41,7 @@ export const defaultState = {
collapseMessageWithSubject: undefined, // instance default
padEmoji: true,
showNavShortcuts: undefined, // instance default
showWiderShortcuts: undefined, // instance default
hideSiteFavicon: undefined, // instance default
hideSiteName: undefined, // instance default
swapReacts: true,

View File

@ -96,6 +96,7 @@ const defaultState = {
showFeaturesPanel: true,
showInstanceSpecificPanel: false,
showNavShortcuts: true,
showWiderShortcuts: true,
sidebarRight: false,
subjectLineBehavior: 'email',
theme: 'pleroma-dark',