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 | |
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')
-rw-r--r-- | core/css/share.css | 8 | ||||
-rw-r--r-- | core/js/share.js | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/core/css/share.css b/core/css/share.css index e806d25982e..c0d8e3f9d63 100644 --- a/core/css/share.css +++ b/core/css/share.css @@ -24,7 +24,14 @@ #shareWithList li { padding-top:.1em; } + + #shareWithList li:first-child { + white-space:normal; + } + #shareWithList .cruds { + margin-left:-10px; + } #dropdown label { font-weight:400; } @@ -43,6 +50,7 @@ float:right; opacity:.5; padding:.3em 0 0 .3em !important; + margin-top:-5px; } #link { 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">'; |