Merge pull request #14914 from nextcloud/bugfix/noid/hidden-files-grid
Fix hidden file display in grid view
This commit is contained in:
commit
6ba5488338
|
@ -385,8 +385,8 @@ table {
|
|||
}
|
||||
}
|
||||
|
||||
.hide-hidden-files #fileList tr.hidden-file,
|
||||
.hide-hidden-files #fileList tr.hidden-file.dragging {
|
||||
.hide-hidden-files #filestable #fileList tr.hidden-file,
|
||||
.hide-hidden-files #filestable #fileList tr.hidden-file.dragging {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
@ -1007,6 +1007,10 @@ table.dragshadow td.size {
|
|||
}
|
||||
}
|
||||
|
||||
tr.hidden-file td.filename .name .nametext .extension {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Center align the footer file number & size summary */
|
||||
tfoot {
|
||||
display: grid;
|
||||
|
|
Loading…
Reference in New Issue