diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-03-14 16:14:01 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-03-14 16:14:01 +0100 |
commit | 672a91c16be60e43a2b49c135d7e557ee31d4198 (patch) | |
tree | 09331fe78f5c87ab1e4348c3bec02af615d62956 /lib/images/fileicons/index.php | |
parent | b97c855c71e194de287fe426d3a85a41405e627f (diff) | |
parent | 11942aff57864dc6f2bb6d329aecab95e27277e9 (diff) | |
download | rpg-672a91c16be60e43a2b49c135d7e557ee31d4198.tar.gz rpg-672a91c16be60e43a2b49c135d7e557ee31d4198.tar.bz2 |
Merge pull request #554 from splitbrain/fileicons
Switched file icons against generated ones, added 32x32 versions
Diffstat (limited to 'lib/images/fileicons/index.php')
-rw-r--r-- | lib/images/fileicons/index.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/images/fileicons/index.php b/lib/images/fileicons/index.php index f90e7e6f0..09b6c9df8 100644 --- a/lib/images/fileicons/index.php +++ b/lib/images/fileicons/index.php @@ -44,5 +44,24 @@ foreach (glob('*.png') as $img) { ?> </div> +<br style="clear: left" /> + +<div class="white box"> + <?php + foreach (glob('32x32/*.png') as $img) { + echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> '; + } + ?> +</div> + +<div class="black box"> + <?php + foreach (glob('32x32/*.png') as $img) { + echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> '; + } + ?> +</div> + + </body> </html> |