summaryrefslogtreecommitdiffstats
path: root/apps/files/js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-06-11 14:30:13 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-06-11 14:30:13 +0200
commit0872f641dd41dce2ded8f3694ef5089077defd8c (patch)
treefe29fd75d6768e757145fc46aefdedb5aaf857ec /apps/files/js
parenta89dedf70d68eb9d887fefcf37c366d750313335 (diff)
downloadnextcloud-server-0872f641dd41dce2ded8f3694ef5089077defd8c.tar.gz
nextcloud-server-0872f641dd41dce2ded8f3694ef5089077defd8c.zip
darker low threshold color for file size and age fading, better contrast
Diffstat (limited to 'apps/files/js')
-rw-r--r--apps/files/js/filelist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index c24d1fd8244..e19a35bbc5b 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -51,7 +51,7 @@ var FileList={
}else{
simpleSize=t('files', 'Pending');
}
- var sizeColor = Math.round(200-Math.pow((size/(1024*1024)),2));
+ var sizeColor = Math.round(160-Math.pow((size/(1024*1024)),2));
var lastModifiedTime = Math.round(lastModified.getTime() / 1000);
td = $('<td></td>').attr({
"class": "filesize",