diff options
author | Volkan Gezer <volkangezer@gmail.com> | 2014-07-02 20:32:15 +0200 |
---|---|---|
committer | Volkan Gezer <volkangezer@gmail.com> | 2014-07-02 21:46:52 +0200 |
commit | 586c4236fdb6a56dcd9bf8f4e1b2059a209aaa9c (patch) | |
tree | 7f79f66cd16458be3e1a882b1bfff75896af535c | |
parent | 3d0094723ce041e2dd0fc99af208bb9cd06f1adb (diff) | |
download | nextcloud-server-586c4236fdb6a56dcd9bf8f4e1b2059a209aaa9c.tar.gz nextcloud-server-586c4236fdb6a56dcd9bf8f4e1b2059a209aaa9c.zip |
fix lineheight of server2server share
-rw-r--r-- | apps/files_sharing/css/public.css | 1 | ||||
-rw-r--r-- | apps/files_sharing/templates/public.php | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index ddd9d10d664..04c482d10e4 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -92,7 +92,6 @@ thead { #remote_address { margin: 0; height: 14px; - line-height: 16px; padding: 6px; } diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 65e620a3425..87472c5c3b4 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -19,7 +19,7 @@ <span id="save" data-protected="<?php p($_['protected'])?>" data-owner="<?php p($_['displayName'])?>" data-name="<?php p($_['filename'])?>"> <button><?php p($l->t('Add to your ownCloud')) ?></button> <form class="save-form hidden" action="#"> - <input type="text" id="remote_address" placeholder="<?php p($l->t('example.com/owncloud')) ?>"/> + <input type="text" id="remote_address" placeholder="example.com/owncloud"/> <input type="submit" value="<?php p($l->t('Save')) ?>"/> </form> </span> |