78 lines
2.3 KiB
Vue
78 lines
2.3 KiB
Vue
<template>
|
|
<details>
|
|
<summary>
|
|
<h3>
|
|
{{ $t("Settings.Theme Settings.Theme Settings") }}
|
|
</h3>
|
|
</summary>
|
|
<hr>
|
|
<ft-flex-box>
|
|
<ft-toggle-switch
|
|
:label="$t('Settings.Theme Settings.Match Top Bar with Main Color')"
|
|
:default-value="barColor"
|
|
@change="updateBarColor"
|
|
/>
|
|
<ft-toggle-switch
|
|
:label="$t('Settings.Theme Settings.Expand Side Bar by Default')"
|
|
:default-value="expandSideBar"
|
|
@change="handleExpandSideBar"
|
|
/>
|
|
<ft-toggle-switch
|
|
:label="$t('Settings.Theme Settings.Disable Smooth Scrolling')"
|
|
:default-value="disableSmoothScrollingToggleValue"
|
|
@change="handleRestartPrompt"
|
|
/>
|
|
<ft-toggle-switch
|
|
:label="$t('Settings.Theme Settings.Hide Side Bar Labels')"
|
|
:default-value="hideLabelsSideBar"
|
|
@change="updateHideLabelsSideBar"
|
|
/>
|
|
</ft-flex-box>
|
|
<ft-flex-box>
|
|
<ft-slider
|
|
:label="$t('Settings.Theme Settings.UI Scale')"
|
|
:default-value="uiScale"
|
|
:min-value="minUiScale"
|
|
:max-value="maxUiScale"
|
|
:step="uiScaleStep"
|
|
value-extension="%"
|
|
@change="updateUiScale(parseInt($event))"
|
|
/>
|
|
</ft-flex-box>
|
|
<br>
|
|
<ft-flex-box>
|
|
<ft-select
|
|
:placeholder="$t('Settings.Theme Settings.Base Theme.Base Theme')"
|
|
:value="baseTheme"
|
|
:select-names="baseThemeNames"
|
|
:select-values="baseThemeValues"
|
|
@change="updateBaseTheme"
|
|
/>
|
|
<ft-select
|
|
:placeholder="$t('Settings.Theme Settings.Main Color Theme.Main Color Theme')"
|
|
:value="mainColor"
|
|
:select-names="colorNames"
|
|
:select-values="colorValues"
|
|
@change="updateMainColor"
|
|
/>
|
|
<ft-select
|
|
:placeholder="$t('Settings.Theme Settings.Secondary Color Theme')"
|
|
:value="secColor"
|
|
:select-names="colorNames"
|
|
:select-values="colorValues"
|
|
@change="updateSecColor"
|
|
/>
|
|
</ft-flex-box>
|
|
<ft-prompt
|
|
v-if="showRestartPrompt"
|
|
:label="restartPromptMessage"
|
|
:option-names="restartPromptNames"
|
|
:option-values="restartPromptValues"
|
|
@click="handleSmoothScrolling"
|
|
/>
|
|
</details>
|
|
</template>
|
|
|
|
<script src="./theme-settings.js" />
|
|
<style scoped lang="sass" src="./theme-settings.sass" />
|