diff options
author | raghunayyar <me@iraghu.com> | 2013-02-20 23:08:21 +0530 |
---|---|---|
committer | raghunayyar <me@iraghu.com> | 2013-02-20 23:08:21 +0530 |
commit | 6ecc3d7ee1a7ae1a33b4906a0ffa1ecc3760c2e1 (patch) | |
tree | c4645b810fb3e59a9c58326c7949e5035bce80f7 /core/js/share.js | |
parent | 326aae8a08248bced07ef59260924a7badda8a4d (diff) | |
download | nextcloud-server-6ecc3d7ee1a7ae1a33b4906a0ffa1ecc3760c2e1.tar.gz nextcloud-server-6ecc3d7ee1a7ae1a33b4906a0ffa1ecc3760c2e1.zip |
Reduced email input width by 10% to increase space.
Diffstat (limited to 'core/js/share.js')
-rw-r--r-- | core/js/share.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/share.js b/core/js/share.js index 231d07cf3b9..dc62dd2e04c 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -186,7 +186,7 @@ OC.Share={ html += '</div>'; html += '</div>'; html += '<form id="emailPrivateLink" >'; - html += '<input id="email" style="display:none; width:72%;" value="" placeholder="'+t('core', 'Email link to person')+'" type="text" />'; + 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>'; } |