Add green status indicator for global mail configuration

Show a green check icon with tinted background when company is
using the global mail configuration, replacing the plain gray text.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Darko Gjorgjijoski
2026-04-04 02:42:00 +02:00
parent 2a3774f437
commit d36fbbbf27

View File

@@ -35,7 +35,8 @@
</component>
</div>
<div v-if="!useCustomMailConfig" class="mt-4 p-4 rounded-md bg-surface-secondary text-sm text-muted">
<div v-if="!useCustomMailConfig" class="mt-4 p-4 rounded-lg bg-green-500/10 border border-green-500/20 text-sm text-status-green flex items-center">
<BaseIcon name="CheckCircleIcon" class="w-5 h-5 mr-2 shrink-0" />
{{ $t('settings.mail.using_global_mail_config') }}
</div>
</BaseSettingCard>