mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #9305 from owncloud/design-share-fixes
Design share fixes
This commit is contained in:
commit
07ba9442db
3 changed files with 7 additions and 4 deletions
|
|
@ -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…
Reference in a new issue