Skip to content

Commit c2a956f

Browse files
committed
Fix buttons wrapping on long folder names
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
1 parent 86d5bfd commit c2a956f

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

apps/files/css/upload.scss

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,20 @@
172172
.oc-dialog .fileexists #allfiles + span{
173173
vertical-align: bottom;
174174
}
175+
175176
.oc-dialog .oc-dialog-buttonrow {
176177
width:100%;
177178
text-align:right;
178-
}
179-
.oc-dialog .oc-dialog-buttonrow .cancel {
180-
float:left;
179+
180+
button {
181+
white-space: nowrap;
182+
overflow: hidden;
183+
text-overflow: ellipsis;
184+
}
185+
186+
.cancel {
187+
float:left;
188+
}
181189
}
182190

183191
.highlightUploaded {

0 commit comments

Comments
 (0)