Merge pull request #9335 from owncloud/fix-expire-message-layout

fix the layout of the enforced expiry date message
This commit is contained in:
Morris Jobke 2014-07-01 17:00:56 +02:00
commit 19a6dc5420
1 changed files with 8 additions and 1 deletions

View File

@ -109,6 +109,13 @@ a.showCruds:hover,a.unshare:hover {
white-space:normal;
}
#defaultExpireMessage { /* show message on new line */
display: block;
padding-left: 4px;
/* TODO: style the dropdown in a proper way - border-box, etc. */
width: 90%;
}
.ui-autocomplete { /* limit dropdown height to 4 1/2 entries */
max-height:103px;
overflow-y:auto;
@ -119,4 +126,4 @@ a.showCruds:hover,a.unshare:hover {
padding-left: 12px;
padding-top: 12px;
color: #999;
}
}