diff options
author | Simon L <szaimen@e.mail.de> | 2023-09-05 16:40:13 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2023-09-06 15:55:24 +0000 |
commit | 3f319cc2008a2f60b83f46513c5e67c9421b5a3c (patch) | |
tree | 498243f96964dac99ec9865485773590cca1b669 /apps/theming/src | |
parent | 8ac768c584cced998b66f9e8de6112b521455001 (diff) | |
download | nextcloud-server-3f319cc2008a2f60b83f46513c5e67c9421b5a3c.tar.gz nextcloud-server-3f319cc2008a2f60b83f46513c5e67c9421b5a3c.zip |
change order of keyboard shortcuts settings to be at the end
Signed-off-by: Simon L <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/theming/src')
-rw-r--r-- | apps/theming/src/UserThemes.vue | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/apps/theming/src/UserThemes.vue b/apps/theming/src/UserThemes.vue index 2bc8b5bf0b2..eb2c4d19547 100644 --- a/apps/theming/src/UserThemes.vue +++ b/apps/theming/src/UserThemes.vue @@ -51,17 +51,6 @@ </div> </NcSettingsSection> - <NcSettingsSection :name="t('theming', 'Keyboard shortcuts')"> - <p>{{ t('theming', 'In some cases keyboard shortcuts can interfere with accessibility tools. In order to allow focusing on your tool correctly you can disable all keyboard shortcuts here. This will also disable all available shortcuts in apps.') }}</p> - <NcCheckboxRadioSwitch class="theming__preview-toggle" - :checked.sync="shortcutsDisabled" - name="shortcuts_disabled" - type="switch" - @change="changeShortcutsDisabled"> - {{ t('theming', 'Disable all keyboard shortcuts') }} - </NcCheckboxRadioSwitch> - </NcSettingsSection> - <NcSettingsSection :name="t('theming', 'Background')" class="background" data-user-theming-background-disabled> @@ -73,6 +62,17 @@ <BackgroundSettings class="background__grid" @update:background="refreshGlobalStyles" /> </template> </NcSettingsSection> + + <NcSettingsSection :name="t('theming', 'Keyboard shortcuts')"> + <p>{{ t('theming', 'In some cases keyboard shortcuts can interfere with accessibility tools. In order to allow focusing on your tool correctly you can disable all keyboard shortcuts here. This will also disable all available shortcuts in apps.') }}</p> + <NcCheckboxRadioSwitch class="theming__preview-toggle" + :checked.sync="shortcutsDisabled" + name="shortcuts_disabled" + type="switch" + @change="changeShortcutsDisabled"> + {{ t('theming', 'Disable all keyboard shortcuts') }} + </NcCheckboxRadioSwitch> + </NcSettingsSection> </section> </template> |