diff options
| author | 2020-04-20 23:27:17 +0200 | |
|---|---|---|
| committer | 2020-04-20 23:27:17 +0200 | |
| commit | acca89505be6ec062ba1acd9cc7df49aac1711fe (patch) | |
| tree | 092daf0e3577aae7f7d80fb7a5267d55599b9dd8 /app/views/user/details.phtml | |
| parent | bd9a72726dbaf26854994e9726091477548a991f (diff) | |
Enhance the way help elements are displayed (#2911)
* - Always display help under the targeted element.
- Use same help place for HTTP authentication in 'add' feed view than in 'update' feed view.
- Move help under input field in register view, as all other places (homogeneity).
* - Don't use "!important" as suggested by @Alkarex.
Diffstat (limited to 'app/views/user/details.phtml')
| -rw-r--r-- | app/views/user/details.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/user/details.phtml b/app/views/user/details.phtml index e23e645ae..ee5e381fd 100644 --- a/app/views/user/details.phtml +++ b/app/views/user/details.phtml @@ -51,7 +51,7 @@ <input type="password" id="newPasswordPlain" name="newPasswordPlain" autocomplete="new-password" pattern=".{7,}" <?= cryptAvailable() ? '' : 'disabled="disabled" ' ?>/> <a class="btn toggle-password" data-toggle="password-<?= $this->username; ?>"><?= _i('key') ?></a> </div> - <?= _i('help'); ?> <?= _t('admin.user.password_format') ?> + <p class="help"><?= _i('help'); ?> <?= _t('admin.user.password_format') ?></p> </div> </div> |
