summaryrefslogtreecommitdiffstats
path: root/files
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-07-07 02:05:12 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-07-07 02:05:12 +0200
commit45bda0997f4cd591c4dab83a5a9bd73de2e98c3e (patch)
tree0c580a39af1038049c813b773088b4de3e01e485 /files
parent0a6c76fb9100e4f1c049befea40f235d001e019f (diff)
downloadnextcloud-server-45bda0997f4cd591c4dab83a5a9bd73de2e98c3e.tar.gz
nextcloud-server-45bda0997f4cd591c4dab83a5a9bd73de2e98c3e.zip
some cleanup, small fixes
Diffstat (limited to 'files')
-rw-r--r--files/templates/part.list.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/templates/part.list.php b/files/templates/part.list.php
index a5ba0ad481e..c7028c3c88c 100644
--- a/files/templates/part.list.php
+++ b/files/templates/part.list.php
@@ -1,6 +1,6 @@
<?php foreach($_['files'] as $file):
$simple_file_size = simple_file_size($file['size']);
- $simple_size_color = 200-intval($simple_file_size*$simple_file_size); ?>
+ $simple_size_color = 200-intval(pow($simple_file_size,3)); ?>
<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>