X Tutup
Skip to content

Commit 49cf352

Browse files
author
JanAckermann
committed
Remove faulty max width
1 parent e92f1e6 commit 49cf352

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

apps/files/css/files.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,7 @@ table td.upload {
389389
table td.filename .nametext {
390390
float: left;
391391
padding: 15px 0;
392+
text-overflow: ellipsis;
392393
}
393394

394395
.column-last > span:first-child,
@@ -405,10 +406,8 @@ table td.filename .nametext {
405406
left: 55px;
406407
padding: 0;
407408
overflow: hidden;
408-
text-overflow: clip;
409409
max-width: 800px;
410410
height: 100%;
411-
width: 100%;
412411
}
413412

414413
.has-favorites #fileList td.filename a.name {

apps/files/css/mobile.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,16 @@ table.multiselect thead {
3939
opacity: .3 !important;
4040
}
4141

42+
table td.filename .nametext {
43+
max-width: 180px;
44+
}
45+
4246
/* ellipsis on file names */
4347
table td.filename .nametext .innernametext {
44-
max-width: 90%;
48+
max-width: 100px;
4549
}
4650

51+
4752
/* proper notification area for multi line messages */
4853
#notification-container {
4954
display: -webkit-box;

changelog/unreleased/39361

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Bugfix: Clicking in the middle of the row in the file list downloads the file
2+
3+
This change addresses the issue if the user clicks in on a row in the file list,
4+
the file gets downloaded or open with the default viewer.
5+
This was not intended, the download or default opening should only happen if
6+
the user clicks directly on the file name.
7+
Problems with mobile devices, where the file name was too long to display,
8+
has been also solved.
9+
10+
https://github.com/owncloud/core/pull/39361
11+
https://github.com/owncloud/core/issues/39329

0 commit comments

Comments
 (0)
X Tutup