Skip to content

Commit

Permalink
fix icon
Browse files Browse the repository at this point in the history
  • Loading branch information
vincchan committed Jun 15, 2016
1 parent 1c3fc8e commit 076f71c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/files/js/filelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -1113,12 +1113,12 @@
td.append(
'<input id="select-' + this.id + '-' + fileData.id +
'" type="checkbox" class="selectCheckBox checkbox"/><label for="select-' + this.id + '-' + fileData.id + '">' +
'<div class="thumbnail icon-folder" style="background-size: 32px;"></div>' +
'<div class="thumbnail" style="background-image:url(' + icon + '); background-size: 32px;"></div>' +
'<span class="hidden-visually">' + t('files', 'Select') + '</span>' +
'</label>'
);
} else {
td.append('<div class="thumbnail icon-folder" style="background-size: 32px;"></div>');
td.append('<div class="thumbnail" style="background-image:url(' + icon + '); background-size: 32px;"></div>');
}
var linkElem = $('<a></a>').attr({
"class": "name",
Expand Down
2 changes: 1 addition & 1 deletion core/css/icons.css
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ img.icon-loading-small-dark, object.icon-loading-small-dark, video.icon-loading-
}

.icon-filetype-folder-drag-accept {
background-image: url('../img/filetypes/folder-drag-accept.svg');
background-image: url('../img/filetypes/folder-drag-accept.svg')!important;
}

.icon-home {
Expand Down

0 comments on commit 076f71c

Please sign in to comment.