diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2024-05-02 16:44:06 +0200 |
---|---|---|
committer | skjnldsv <skjnldsv@protonmail.com> | 2024-05-02 16:46:20 +0200 |
commit | fc371b2a4b2fa43c2b2176d1efb0d296c90659ab (patch) | |
tree | e690f520147b4dd923a49c48c3af16daf78fc2c2 /apps/theming/src | |
parent | 8694675a2635f06a5cac59253aa1ec45a019ee8a (diff) | |
download | nextcloud-server-fc371b2a4b2fa43c2b2176d1efb0d296c90659ab.tar.gz nextcloud-server-fc371b2a4b2fa43c2b2176d1efb0d296c90659ab.zip |
fix(theming): better background and UI color change description
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/theming/src')
-rw-r--r-- | apps/theming/src/UserThemes.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/src/UserThemes.vue b/apps/theming/src/UserThemes.vue index d941bf9c1db..676b8eca767 100644 --- a/apps/theming/src/UserThemes.vue +++ b/apps/theming/src/UserThemes.vue @@ -53,14 +53,14 @@ </div> </NcSettingsSection> - <NcSettingsSection :name="t('theming', 'Background')" + <NcSettingsSection :name="t('theming', 'Background and color')" class="background" data-user-theming-background-disabled> <template v-if="isUserThemingDisabled"> <p>{{ t('theming', 'Customization has been disabled by your administrator') }}</p> </template> <template v-else> - <p>{{ t('theming', 'Set a custom background') }}</p> + <p>{{ t('theming', 'The background can be set to an image from the default set, a custom uploaded image, or a plain color. The primary color will automatically be adapted based on this and used for elements like folder icons, primary buttons and highlights.') }}</p> <BackgroundSettings class="background__grid" @update:background="refreshGlobalStyles" /> </template> </NcSettingsSection> |