diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-24 16:58:30 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-24 16:58:30 +0200 |
commit | a659ccb89c5e51cd8a5f14865872c2eb5162e1f2 (patch) | |
tree | 2fbcf0f4b1d0bb016306b6998e6419e03d0c644d /apps/files | |
parent | 763b75ff4ff28b932fcf17fc8c37b3b4e378cc57 (diff) | |
download | nextcloud-server-a659ccb89c5e51cd8a5f14865872c2eb5162e1f2.tar.gz nextcloud-server-a659ccb89c5e51cd8a5f14865872c2eb5162e1f2.zip |
bigger file thumbnail in app sidebar
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/css/detailsView.css | 9 | ||||
-rw-r--r-- | apps/files/js/mainfileinfodetailview.js | 4 |
2 files changed, 7 insertions, 6 deletions
diff --git a/apps/files/css/detailsView.css b/apps/files/css/detailsView.css index 76629cb790f..dafd8c24573 100644 --- a/apps/files/css/detailsView.css +++ b/apps/files/css/detailsView.css @@ -12,11 +12,11 @@ } #app-sidebar .thumbnail { - width: 50px; - height: 50px; + width: 75px; + height: 75px; float: left; margin-right: 10px; - background-size: 50px; + background-size: 75px; } #app-sidebar .ellipsis { @@ -27,7 +27,8 @@ #app-sidebar .fileName { font-size: 16px; - padding-top: 3px; + padding-top: 13px; + padding-bottom: 3px; } #app-sidebar .file-details { diff --git a/apps/files/js/mainfileinfodetailview.js b/apps/files/js/mainfileinfodetailview.js index 6910e5f2be5..8bf22149841 100644 --- a/apps/files/js/mainfileinfodetailview.js +++ b/apps/files/js/mainfileinfodetailview.js @@ -125,8 +125,8 @@ path: this.model.getFullPath(), mime: this.model.get('mimetype'), etag: this.model.get('etag'), - x: 50, - y: 50, + x: 75, + y: 75, callback: function(previewUrl) { $iconDiv.css('background-image', 'url("' + previewUrl + '")'); } |