diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-07-30 12:14:09 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-07-30 12:14:09 +0200 |
commit | 48fb1e2dae3d6c91b5c9bded455b38eb7c4c4df0 (patch) | |
tree | 28dbd7988a49e685463b506ca3f992c0c97dfe67 /files/templates | |
parent | f9ddbc4925fe250ce678182375b26f018f2c525e (diff) | |
download | nextcloud-server-48fb1e2dae3d6c91b5c9bded455b38eb7c4c4df0.tar.gz nextcloud-server-48fb1e2dae3d6c91b5c9bded455b38eb7c4c4df0.zip |
hide empty folder notification when a folder or file got uploaded
Diffstat (limited to 'files/templates')
-rw-r--r-- | files/templates/part.list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/templates/part.list.php b/files/templates/part.list.php index 3713d483b00..40586664328 100644 --- a/files/templates/part.list.php +++ b/files/templates/part.list.php @@ -1,4 +1,4 @@ - <?php if(!$_['files']) echo '<span id="emptyfolder">Nothing in here. Upload something!</span><style>.file_upload_filename { background-color:#ffc100; border:#dda600 1px solid; }</style>'; + <?php if(!$_['files']) echo '<span id="emptyfolder">Nothing in here. Upload something!<style>.file_upload_filename { background-color:#ffc100; border:#dda600 1px solid; }</style></span>'; foreach($_['files'] as $file): $simple_file_size = simple_file_size($file['size']); $simple_size_color = 200-intval($file['size']/(1024*1024)*2); // the bigger the file, the darker the shade of grey |