diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-02-27 02:19:35 -0800 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-02-27 02:19:35 -0800 |
commit | f36d92bbc19a1eeb071fe992ae1973691760d8fd (patch) | |
tree | 91b791b831d8d27085898c78113754ba25d6b4e6 /core/js | |
parent | f26c47743329679a9f2ade0b3fe778439050c5af (diff) | |
parent | 6ecc3d7ee1a7ae1a33b4906a0ffa1ecc3760c2e1 (diff) | |
download | nextcloud-server-f36d92bbc19a1eeb071fe992ae1973691760d8fd.tar.gz nextcloud-server-f36d92bbc19a1eeb071fe992ae1973691760d8fd.zip |
Merge pull request #1800 from raghunayyar/sharing-dropdown-fixes
Various Layout Fixes for Sharing Dropdown.
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/share.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/share.js b/core/js/share.js index 6d1c3954044..dc62dd2e04c 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -186,8 +186,8 @@ OC.Share={ html += '</div>'; html += '</div>'; html += '<form id="emailPrivateLink" >'; - html += '<input id="email" style="display:none; width:65%;" value="" placeholder="'+t('core', 'Email link to person')+'" type="text" />'; - html += '<input id="emailButton" style="display:none; float:right;" type="submit" value="'+t('core', 'Send')+'" />'; + html += '<input id="email" style="display:none; width:62%;" value="" placeholder="'+t('core', 'Email link to person')+'" type="text" />'; + html += '<input id="emailButton" style="display:none;" type="submit" value="'+t('core', 'Send')+'" />'; html += '</form>'; } html += '<div id="expiration">'; |