remove extra-padding, ununsed

This commit is contained in:
Girish Ramakrishnan
2025-09-25 12:04:12 +02:00
parent 5bdfe23435
commit fc83306d72
10 changed files with 11 additions and 20 deletions
+1 -1
View File
@@ -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')"
+2 -2
View File
@@ -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>
+1 -1
View File
@@ -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>
+1 -1
View File
@@ -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"/>
+1 -1
View File
@@ -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"/>