fix summary elements alignment

Signed-off-by: Greta Doci <gretadoci@gmail.com>
This commit is contained in:
Greta Doci 2019-11-26 18:52:56 +01:00
parent b607e3e6f4
commit efb73a9b3c
2 changed files with 5 additions and 2 deletions

View File

@ -656,6 +656,9 @@ a.action > img {
/* add whitespace to bottom of files list to correctly show dropdowns */
height: 250px;
}
#filestable .filesummary {
width: 100%;
}
/* Less whitespace needed on link share page
* as there is a footer and action menus have fewer entries.
*/

View File

@ -62,7 +62,7 @@
* Returns whether the given file info must be hidden
*
* @param {OC.Files.FileInfo} fileInfo file info
*
*
* @return {boolean} true if the file is a hidden file, false otherwise
*/
_isHiddenFile: function(file) {
@ -266,7 +266,7 @@
}
var $summary = $(
'<td>' + this._infoTemplate() + '</td>' +
'<td class="filesummary">'+ this._infoTemplate() + '</td>' +
fileSize +
'<td class="date"></td>'
);