]> source.dussan.org Git - nextcloud-server.git/commitdiff
file size is reflected in the value's shade of grey, atm calculated absolutely
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>
Wed, 6 Jul 2011 23:52:26 +0000 (01:52 +0200)
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>
Wed, 6 Jul 2011 23:52:26 +0000 (01:52 +0200)
files/templates/part.list.php

index fd7f3f644df375776799958d9d3022360e4a623a..a5ba0ad481e8644adcc65c4953a5f8603b811477 100644 (file)
@@ -1,8 +1,10 @@
-               <?php foreach($_['files'] as $file): ?>
+               <?php foreach($_['files'] as $file):
+                       $simple_file_size = simple_file_size($file['size']);
+                       $simple_size_color = 200-intval($simple_file_size*$simple_file_size); ?>
                        <tr data-file="<?php echo $file['name'];?>" data-type="<?php echo ($file['type'] == 'dir')?'dir':'file'?>" data-mime="<?php echo $file['mime']?>">
                                <td class="selection"><input type="checkbox" /></td>
                                <td class="filename"><a style="background-image:url(<?php if($file['type'] == 'dir') echo mimetype_icon('dir'); else echo mimetype_icon($file['mime']); ?>)" href="<?php if($file['type'] == 'dir') echo link_to('files', 'index.php?dir='.$file['directory'].'/'.$file['name']); else echo link_to('files', 'download.php?file='.$file['directory'].'/'.$file['name']); ?>" title=""><?php if($file['type'] == 'dir') echo "<strong>"; echo htmlspecialchars($file['name']); if($file['type'] == 'dir') echo "</strong>"; ?></a></td>
-                               <td class="filesize" title="<?php echo human_file_size($file['size']); ?>"><?php echo simple_file_size($file['size']); ?></td>
+                               <td class="filesize" title="<?php echo human_file_size($file['size']); ?>" style="color:rgb(<?php echo $simple_size_color.','.$simple_size_color.','.$simple_size_color ?>)"><?php echo $simple_file_size; ?></td>
                                <td class="date"><?php echo $file['date']; ?></td>
                                <td class="fileaction"><a href="" title="+" class="dropArrow"></a></td>
                        </tr>