Browse Source

Merge pull request #1800 from raghunayyar/sharing-dropdown-fixes

Various Layout Fixes for Sharing Dropdown.
remotes/origin/stable5
Jan-Christoph Borchardt 13 years ago
parent
commit
f36d92bbc1
  1. 8
      core/css/share.css
  2. 4
      core/js/share.js

8
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 {

4
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">';

Loading…
Cancel
Save