diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-07-07 00:20:40 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-07-07 00:20:40 +0200 |
commit | 76eaab4b6b19240009b585812d4c0ae06578fe1f (patch) | |
tree | c908b2236c0415ef38a55be3376c5be1e5cb8f16 | |
parent | b29789277568b1acf0db786ec42f2367c13ada68 (diff) | |
download | nextcloud-server-76eaab4b6b19240009b585812d4c0ae06578fe1f.tar.gz nextcloud-server-76eaab4b6b19240009b585812d4c0ae06578fe1f.zip |
make folder labels bold, better distinction from files
-rw-r--r-- | files/js/filelist.js | 2 | ||||
-rw-r--r-- | files/templates/part.list.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/files/js/filelist.js b/files/js/filelist.js index 089a34581de..2d00c642333 100644 --- a/files/js/filelist.js +++ b/files/js/filelist.js @@ -15,7 +15,7 @@ FileList={ addDir:function(name,size,lastModified){ var html='<tr data-file="'+name+'" data-type="dir">'; html+='<td class="selection"><input type="checkbox" /></td>'; - html+='<td class="filename"><a style="background-image:url(img/folder.png)" href="index.php?dir='+$('#dir').val()+'/'+name+'">'+name+'</a></td>'; + html+='<td class="filename"><a style="background-image:url(img/folder.png)" href="index.php?dir='+$('#dir').val()+'/'+name+'"><strong>'+name+'</strong></a></td>'; html+='<td class="filesize">'+size+'</td>'; html+='<td class="date">'+lastModified+'</td>'; html+='<td class="fileaction"><a href="" title="+" class="dropArrow"></a></td>'; diff --git a/files/templates/part.list.php b/files/templates/part.list.php index 16d9d92c040..443990af34f 100644 --- a/files/templates/part.list.php +++ b/files/templates/part.list.php @@ -1,9 +1,9 @@ <?php foreach($_["files"] as $file): ?> <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 echo htmlspecialchars($file["name"]); ?></a></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"><?php echo human_file_size($file["size"]); ?></td> <td class="date"><?php echo $file["date"]; ?></td> <td class="fileaction"><a href="" title="+" class='dropArrow'></a></td> </tr> - <?php endforeach; ?>
\ No newline at end of file + <?php endforeach; ?> |