]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix summary elements alignment 18123/head
authorGreta Doci <gretadoci@gmail.com>
Tue, 26 Nov 2019 17:52:56 +0000 (18:52 +0100)
committerGreta Doci <gretadoci@gmail.com>
Tue, 26 Nov 2019 17:52:56 +0000 (18:52 +0100)
Signed-off-by: Greta Doci <gretadoci@gmail.com>
apps/files/css/files.scss
apps/files/js/filesummary.js

index 833c0aa1c13180cefb209817dbfd9d4978b8f541..915c037431dd22dac28e81930109cc3ea5d5f887 100644 (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.
  */
index c866ccb4ff5561c3a335eb4bd44ca6f4a6549e9e..202dd51cd4c8d75dada9cab86495252edcf6e8ef 100644 (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) {
                        }
 
                        var $summary = $(
-                               '<td>' + this._infoTemplate() + '</td>' +
+                               '<td class="filesummary">'+ this._infoTemplate() + '</td>' +
                                fileSize +
                                '<td class="date"></td>'
                        );