Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update for grid view
  • Loading branch information
mamatt committed Feb 27, 2019
commit 529c68b55cae5f28c81ef2f271365a019a20fd52
4 changes: 3 additions & 1 deletion apps/files/css/files.scss
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ table th#headerName {
table th#headerSize, table td.filesize {
text-align: right;
}
table th#headerGroup,
table th#headerDate, table td.date,
table th.column-last, table td.column-last {
-moz-box-sizing: border-box;
Expand Down Expand Up @@ -942,8 +943,9 @@ table.dragshadow td.size {
}
}

/* No space for filesize and date in grid view */
/* No space for filesize ,groups and date in grid view */
&.filesize,
&.groups,
&.date {
display: none;
}
Expand Down
2 changes: 1 addition & 1 deletion apps/files_sharing/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ OCA.Sharing.App = {
'<p>' + t('files_sharing', 'Files and folders others share with your groups will show up here') + '</p>');

//add col for group name
this._groupsFileList.$table.find("thead tr").append('<td id=headerGroup class="column-groups">' +
this._groupsFileList.$table.find("thead tr").append('<th id=headerGroup class="column-groups">' +
'<a class="columntitle" data-sort="groups">'+
'<span>' + t('files_sharing','Group') + '</span>' +
'<span class="sort-indicator icon-triangle-s"></span>'+
Expand Down