Document Thumbnail size in File Manager 5.7.5.5

Permalink
Hi,
I have just upgraded to 5.7.5.5 and have noticed document file (PDF etc...) thumbnail sizes are really large in the File Manager. It appears they are ignoring the settings of File Manager Thumbnails 60 x 60.

Is anyone else seeing the same issue or is there a way to make these smaller?

studio108
 
MrKDilkington replied on at Permalink Reply
MrKDilkington
Hi studio108,

The CSS controlling this was recently changed.

"remove max height from filemanager thumbnail #3407"
https://github.com/concrete5/concrete5/pull/3407...
studio108 replied on at Permalink Reply
studio108
Thanks @MrKDilkington

Great support as ever.

So something like the following could be a temporary .css fix?

table.ccm-search-results-table tbody td.ccm-file-manager-search-results-thumbnail img {
max-height: 60px;
}
MrKDilkington replied on at Permalink Reply
MrKDilkington
@studio108

There were two styles, one for the file manager and I believe the other was the file set list.
.ccm-file-set-file-list td.ccm-file-manager-search-results-thumbnail img {max-height: 60px}
table.ccm-search-results-table tbody td.ccm-file-manager-search-results-thumbnail img {
    max-height: 60px;
}