Skip to content

Commit 6ba5488

Browse files
authored
Merge pull request #14914 from nextcloud/bugfix/noid/hidden-files-grid
Fix hidden file display in grid view
2 parents a131999 + f2914ca commit 6ba5488

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

apps/files/css/files.scss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,8 +385,8 @@ table {
385385
}
386386
}
387387

388-
.hide-hidden-files #fileList tr.hidden-file,
389-
.hide-hidden-files #fileList tr.hidden-file.dragging {
388+
.hide-hidden-files #filestable #fileList tr.hidden-file,
389+
.hide-hidden-files #filestable #fileList tr.hidden-file.dragging {
390390
display: none;
391391
}
392392

@@ -1007,6 +1007,10 @@ table.dragshadow td.size {
10071007
}
10081008
}
10091009

1010+
tr.hidden-file td.filename .name .nametext .extension {
1011+
display: block;
1012+
}
1013+
10101014
/* Center align the footer file number & size summary */
10111015
tfoot {
10121016
display: grid;

0 commit comments

Comments
 (0)