Skip to content

Commit

Permalink
Fix buttons wrapping on long folder names
Browse files Browse the repository at this point in the history
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
  • Loading branch information
jancborchardt committed Oct 1, 2018
1 parent 86d5bfd commit c2a956f
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions apps/files/css/upload.scss
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,20 @@
.oc-dialog .fileexists #allfiles + span{
vertical-align: bottom;
}

.oc-dialog .oc-dialog-buttonrow {
width:100%;
text-align:right;
}
.oc-dialog .oc-dialog-buttonrow .cancel {
float:left;

button {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.cancel {
float:left;
}
}

.highlightUploaded {
Expand Down

0 comments on commit c2a956f

Please sign in to comment.