]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix the drop down arrow in file browser
authorRobin Appelman <icewind1991@gmail.com>
Mon, 16 May 2011 14:34:04 +0000 (16:34 +0200)
committerRobin Appelman <icewind1991@gmail.com>
Mon, 16 May 2011 14:34:04 +0000 (16:34 +0200)
css/styles.css
files/templates/part.list.php

index b53343b0f23eb173bd79bf28e08778c05dcd7124..0f4d8c5df80c8ce66b4fed2c4905b892237c6727 100644 (file)
@@ -95,6 +95,7 @@ table td.delete { background-image:url('../img/delete.png'); }
 #fileList tr input[type=checkbox] { display:none; }
 #fileList tr input[type=checkbox]:checked { display:inline; }
 #fileList tr:hover input[type=checkbox] { display:inline; }
+a.dropArrow{ background-image:url('../img/drop-arrow.png'); width:16px; height:16px; display:block}
 
 /* NAVIGATION BAR */
 p.nav { margin:1em 0 0 2em; padding:0.8em; line-height:16px; font-weight:bold; }
index 0d4fcc75489ba916c01eeec8b8f5003637c5e51a..19143807c283fc46c9e2879164a7f6f95141563d 100644 (file)
@@ -4,6 +4,6 @@
                                <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="filesize"><?php echo human_file_size($file["size"]); ?></td>
                                <td class="date"><?php echo $file["date"]; ?></td>
-                               <td class="fileaction"><a href="" title=""><img src="images/drop-arrow.png" alt="+" /></a></td>
+                               <td class="fileaction"><a href="" title="+" class='dropArrow'/></td>
                        </tr>
                <?php endforeach; ?>
\ No newline at end of file