]> source.dussan.org Git - nextcloud-server.git/commitdiff
revised coloring again
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>
Fri, 29 Jul 2011 01:09:30 +0000 (03:09 +0200)
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>
Fri, 29 Jul 2011 01:09:30 +0000 (03:09 +0200)
files/css/files.css
files/templates/part.list.php

index 4f217ff819c65dd8757ea7c7fe0032015ef8e2ae..dd2ed732c77c97e9f93e7933817a29469876c26c 100644 (file)
@@ -24,7 +24,7 @@ table th .name { float:left; margin-left:.5em; }
 table th, table td { border-bottom:1px solid #ddd; text-align:left; font-weight:normal; }
 table td { border-bottom:1px solid #eee; font-style:normal; }
 table th#headerSize, table td.filesize { width:5em; padding:0 1em; text-align:right; }
-table th#headerDate, table td.date { width:10em; padding:0 .1em 0 1em; text-align:left; }
+table th#headerDate, table td.date { width:11em; padding:0 .1em 0 1em; text-align:left; }
 table td.selection, table th.selection, table td.fileaction { width:2em; text-align:center; }
 table td.filename a.name { display:block; background-image:url('../img/file.png'); height:1.5em; vertical-align:middle; }
 table tr[data-type="dir"] td.filename a.name {font-weight:bold; }
index 7fa44d0b3106938629e3daeb817b3811ed151e26..54606e083e3c19f007977da63b2b013c240a405c 100644 (file)
@@ -1,6 +1,7 @@
                <?php foreach($_['files'] as $file):
                        $simple_file_size = simple_file_size($file['size']);
-                       $simple_size_color = 200-intval($file['size']/(1024*1024)*20);
+                       $simple_size_color = 200-intval($file['size']/(1024*1024)*5);
+                       if($simple_size_color<0) $simple_size_color = 0;
                        $relative_modified_date = relative_modified_date($file['mtime']);
                        $relative_date_color = round((time()-$file['mtime'])/60/60/24*7); //days ago
                        if($relative_date_color>200) $relative_date_color = 200; ?>