aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2023-05-12 06:13:35 +0200
committerJoas Schilling <coding@schilljs.com>2023-05-22 12:44:17 +0200
commit2c97bca5d0c36c5a05491ed695d6cfb1bd4e65ff (patch)
treecb19818c7ef27f9d7d54a0e0085d24efe137a354
parentf9039b4fbdc359b378d847400a729803a3a4b8a2 (diff)
downloadnextcloud-server-2c97bca5d0c36c5a05491ed695d6cfb1bd4e65ff.tar.gz
nextcloud-server-2c97bca5d0c36c5a05491ed695d6cfb1bd4e65ff.zip
Indent "Enforce password protection"
"Enforce password protection" is a subcase of "Always ask for a password", so it should be indented to visually show the dependency. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r--apps/settings/templates/settings/admin/sharing.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings/templates/settings/admin/sharing.php b/apps/settings/templates/settings/admin/sharing.php
index ff5a11f737d..c05b8ff7dd4 100644
--- a/apps/settings/templates/settings/admin/sharing.php
+++ b/apps/settings/templates/settings/admin/sharing.php
@@ -118,12 +118,12 @@
value="1" <?php if ($_['enforceLinkPassword']) {
print_unescaped('checked="checked"');
} ?> />
- <label for="enforceLinkPassword"><?php p($l->t('Enforce password protection'));?></label><br/>
+ <label for="enforceLinkPassword" class="indent"><?php p($l->t('Enforce password protection'));?></label><br/>
<?php if ($_['passwordExcludedGroupsFeatureEnabled']) { ?>
- <span id="selectPasswordsExcludedGroups" class="indent <?php if (!$_['enforceLinkPassword']) { p('hidden'); } ?>">
+ <span id="selectPasswordsExcludedGroups" class="double-indent <?php if (!$_['enforceLinkPassword']) { p('hidden'); } ?>">
<label for="shareapi_enforce_links_password_excluded_groups"><?php p($l->t('Exclude groups from password requirements:'));?></label><br/>
- <input name="shareapi_enforce_links_password_excluded_groups" id="passwordsExcludedGroups" value="<?php p($_['passwordExcludedGroups']) ?>" style="width: 400px" class="noJSAutoUpdate indent"/>
+ <input name="shareapi_enforce_links_password_excluded_groups" id="passwordsExcludedGroups" value="<?php p($_['passwordExcludedGroups']) ?>" style="width: 400px" class="noJSAutoUpdate double-indent"/>
</span><br/>
<?php } ?>