remove extra-padding, ununsed
This commit is contained in:
@@ -295,7 +295,7 @@ onMounted(async () => {
|
||||
<div class="content-large">
|
||||
<Menu ref="actionMenuElement" :model="actionMenuModel" />
|
||||
|
||||
<Section :title="$t('backups.listing.title')" :padding="false">
|
||||
<Section :title="$t('backups.listing.title')">
|
||||
<Dialog ref="infoDialog"
|
||||
:title="$t('backups.backupDetails.title')"
|
||||
:reject-label="$t('main.dialog.close')"
|
||||
|
||||
@@ -278,7 +278,7 @@ onMounted(async () => {
|
||||
|
||||
<ProgressBar mode="indeterminate" v-if="busyRefresh" slim :show-label="false" />
|
||||
|
||||
<Section :title="$t('email.config.sending.title')" :padding="false" v-if="!busyRefresh">
|
||||
<Section :title="$t('email.config.sending.title')" v-if="!busyRefresh">
|
||||
<template #header-buttons>
|
||||
<Button @click="onSendTestMail">{{ $t('emails.domains.testEmailTooltip') }}</Button>
|
||||
</template>
|
||||
@@ -304,7 +304,7 @@ onMounted(async () => {
|
||||
</SettingsItem>
|
||||
</Section>
|
||||
|
||||
<Section :title="$t('email.config.receiving.title')" :padding="false" v-if="!busyRefresh" :title-badge="!features.emailServer ? 'Upgrade' : ''">
|
||||
<Section :title="$t('email.config.receiving.title')" v-if="!busyRefresh" :title-badge="!features.emailServer ? 'Upgrade' : ''">
|
||||
<template #header-buttons>
|
||||
<Button secondary tool icon="fa-solid fa-book" v-tooltip="$t('app.docsActionTooltip')" :menu="infoMenu" />
|
||||
</template>
|
||||
|
||||
@@ -251,7 +251,7 @@ onMounted(async () => {
|
||||
</form>
|
||||
</Dialog>
|
||||
|
||||
<Section :title="$t('emails.settings.title')" :padding="false">
|
||||
<Section :title="$t('emails.settings.title')">
|
||||
<SettingsItem>
|
||||
<FormGroup>
|
||||
<label>{{ $t('emails.mailboxSharing.title') }}</label>
|
||||
|
||||
@@ -45,7 +45,7 @@ onMounted(async () => {
|
||||
<Ipv6Config />
|
||||
<Firewall />
|
||||
|
||||
<Section :title="$t('network.dyndns.title')" :padding="false">
|
||||
<Section :title="$t('network.dyndns.title')">
|
||||
<SettingsItem>
|
||||
<div>{{ $t('network.dyndns.description') }}</div>
|
||||
<Switch v-model="dynDnsIsEnabled" @change="onToggleDynDns" :busy="busy"/>
|
||||
|
||||
@@ -85,7 +85,7 @@ onMounted(async () => {
|
||||
|
||||
<template>
|
||||
<div class="content">
|
||||
<Section :title="$t('system.locale.title')" :padding="false">
|
||||
<Section :title="$t('system.locale.title')">
|
||||
<SettingsItem wrap>
|
||||
<div>
|
||||
<label>{{ $t('settings.timezone.title') }}</label>
|
||||
|
||||
@@ -51,7 +51,7 @@ onMounted(async () => {
|
||||
|
||||
<template>
|
||||
<div class="content">
|
||||
<Section :title="$t('users.title')" :padding="false" :title-badge="!features.profileConfig ? 'Upgrade' : ''">
|
||||
<Section :title="$t('users.title')" :title-badge="!features.profileConfig ? 'Upgrade' : ''">
|
||||
<SettingsItem>
|
||||
<div>{{ $t('users.settings.allowProfileEditCheckbox') }} <sup><a href="https://docs.cloudron.io/user-directory/#lock-profile" target="_blank"><i class="fa fa-question-circle"></i></a></sup></div>
|
||||
<Switch v-model="editableUserProfiles" @change="onToggleEditableUserProfiles" :disabled="busy || !features.profileConfig"/>
|
||||
|
||||
Reference in New Issue
Block a user