Merge pull request #9305 from owncloud/design-share-fixes

Design share fixes
remotes/origin/ldap_group_count
Jan-Christoph Borchardt 12 years ago
commit 07ba9442db
  1. 6
      apps/files/css/files.css
  2. 3
      core/css/share.css
  3. 2
      core/js/share.js

@ -307,8 +307,10 @@ table td.filename .nametext .innernametext {
/* for smaller resolutions - see mobile.css */
table td.filename .uploadtext { font-weight:normal; margin-left:8px; }
table td.filename form { font-size:14px; margin-left:46px; height: 40px; padding-top: 10px}
table td.filename .uploadtext {
font-weight: normal;
margin-left: 8px;
}
.ie8 input[type="checkbox"]{
padding: 0;

@ -104,6 +104,7 @@ a.showCruds:hover,a.unshare:hover {
opacity:1;
}
#defaultExpireMessage, /* fix expire message going out of box */
.reshare { /* fix shared by text going out of box */
white-space:normal;
}
@ -118,4 +119,4 @@ a.showCruds:hover,a.unshare:hover {
padding-left: 12px;
padding-top: 12px;
color: #999;
}
}

@ -364,7 +364,7 @@ OC.Share={
html += '<div id="expiration">';
html += '<input type="checkbox" name="expirationCheckbox" id="expirationCheckbox" value="1" /><label for="expirationCheckbox">'+t('core', 'Set expiration date')+'</label>';
html += '<input id="expirationDate" type="text" placeholder="'+t('core', 'Expiration date')+'" style="display:none; width:90%;" />';
html += '<div id="defaultExpireMessage">'+defaultExpireMessage+'</div>';
html += '<em id="defaultExpireMessage">'+defaultExpireMessage+'</em>';
html += '</div>';
dropDownEl = $(html);
dropDownEl = dropDownEl.appendTo(appendTo);

Loading…
Cancel
Save