diff options
author | Volkan Gezer <wakeup@users.noreply.github.com> | 2014-07-03 00:39:37 +0200 |
---|---|---|
committer | Volkan Gezer <wakeup@users.noreply.github.com> | 2014-07-03 00:39:37 +0200 |
commit | bf08e3a85eae12723d35ae5e82305aee924775a9 (patch) | |
tree | 6606b7b1402743202c06c9ad10d3448493e4eab5 | |
parent | 5a7b58ac455b716985067c011114e7511cbd7ed2 (diff) | |
parent | 586c4236fdb6a56dcd9bf8f4e1b2059a209aaa9c (diff) | |
download | nextcloud-server-bf08e3a85eae12723d35ae5e82305aee924775a9.tar.gz nextcloud-server-bf08e3a85eae12723d35ae5e82305aee924775a9.zip |
Merge pull request #9382 from owncloud/server2server-css
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> |