diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-06-06 17:06:44 -0500 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-06-07 11:30:56 -0500 |
commit | d8665478057cff7ecfafb6b533db2cd4f0b358a6 (patch) | |
tree | 982bab04d4529e125265e110400477b689a84738 /settings | |
parent | d08a6c74abf620c1c2d23649aed48e0c833d6a50 (diff) | |
download | nextcloud-server-d8665478057cff7ecfafb6b533db2cd4f0b358a6.tar.gz nextcloud-server-d8665478057cff7ecfafb6b533db2cd4f0b358a6.zip |
Allow to change avatar when groups are disables
* password form overlaps upload button and doesn't allow to click it
* regression from #5259
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
make sure that we always clear all floating rules after the user settings parts
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'settings')
-rw-r--r-- | settings/css/settings.css | 7 | ||||
-rw-r--r-- | settings/templates/personal.php | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 4c81ac88a89..9b7cf44ea07 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -12,6 +12,10 @@ input#openid, input#webdav { /* PERSONAL */ +.clear { + clear: both; +} + /* icons for sidebar */ .nav-icon-personal-settings { background-image: url('../img/personal.svg?v=1'); @@ -226,8 +230,7 @@ input#openid, input#webdav { } #lostpassword, -#groups, -#passwordform { +#groups { display: inline-block; margin-bottom: 0; padding-bottom: 0; diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 54e4b6872fe..714007afbb6 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -239,6 +239,8 @@ </div> </div> +<div class="clear"></div> + <?php if ($_['showGroupMembership'] === true): ?> <div id="groups" class="section"> <h2><?php p($l->t('Groups')); ?></h2> @@ -353,7 +355,7 @@ if($_['passwordChangeSupported']) { <h3><?php p($l->t('App passwords'));?></h3> <p class="settings-hint"><?php p($l->t('Here you can generate individual passwords for apps so you don’t have to give out your password. You can revoke them individually too.'));?></p> - + <div id="app-password-form"> <input id="app-password-name" type="text" placeholder="<?php p($l->t('App name')); ?>"> <button id="add-app-password" class="button"><?php p($l->t('Create new app password')); ?></button> |