diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-06-16 11:11:03 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-06-16 11:11:03 +0200 |
commit | d21845557e9fdbc27817f6ed2d8249d17c14a978 (patch) | |
tree | f5810840912a0c383bc71f13a15c6028b2102d36 | |
parent | ec5448bf7d2943f7b02fd5122a2c32969e528e4b (diff) | |
parent | 06ec82fd683bfd30cc17fdbdd93c05b4b2dd655f (diff) | |
download | nextcloud-server-d21845557e9fdbc27817f6ed2d8249d17c14a978.tar.gz nextcloud-server-d21845557e9fdbc27817f6ed2d8249d17c14a978.zip |
Merge pull request #9027 from owncloud/fix-password-saved-share-layout
fix layout of password protected shares
-rw-r--r-- | apps/files_sharing/css/authenticate.css | 8 | ||||
-rw-r--r-- | apps/files_sharing/templates/authenticate.php | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/apps/files_sharing/css/authenticate.css b/apps/files_sharing/css/authenticate.css index a5aa55632bb..15e3e7a2fc5 100644 --- a/apps/files_sharing/css/authenticate.css +++ b/apps/files_sharing/css/authenticate.css @@ -14,3 +14,11 @@ input[type='submit'] { position: absolute; top: 0px; } + +fieldset > p { + position: relative; +} + +#password-icon { + top: 20px; +} diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index f899a54e0f9..0c4ac6ca445 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -12,6 +12,7 @@ placeholder="<?php p($l->t('Password')); ?>" value="" autocomplete="off" autocapitalize="off" autocorrect="off" autofocus /> + <img class="svg" id="password-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt=""/> <input type="submit" value="" class="svg icon-confirm" /> </p> </fieldset> |