diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-07-07 01:52:26 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-07-07 01:52:26 +0200 |
commit | 0a6c76fb9100e4f1c049befea40f235d001e019f (patch) | |
tree | 6c3ff3fa2c751dc2ef6bb05733cb5232f11c75f7 /files | |
parent | e3fd72dc1627ef1cbfd4c525ea5428e68942e80a (diff) | |
download | nextcloud-server-0a6c76fb9100e4f1c049befea40f235d001e019f.tar.gz nextcloud-server-0a6c76fb9100e4f1c049befea40f235d001e019f.zip |
file size is reflected in the value's shade of grey, atm calculated absolutely
Diffstat (limited to 'files')
-rw-r--r-- | files/templates/part.list.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/files/templates/part.list.php b/files/templates/part.list.php index fd7f3f644df..a5ba0ad481e 100644 --- a/files/templates/part.list.php +++ b/files/templates/part.list.php @@ -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> |