summaryrefslogtreecommitdiff
path: root/index_edit.php
diff options
context:
space:
mode:
authorfisharebest <fisharebest@gmail.com>2010-07-17 16:10:29 +0000
committerfisharebest <fisharebest@gmail.com>2010-07-17 16:10:29 +0000
commitb4da02a0df04e995a24e998d472f1052d498565b (patch)
treed66bd0f74a5b856e159efb323c2cb985f3eb0ca6 /index_edit.php
parent72cc34148c69d4aa6f14584d3268ea835b9ce739 (diff)
downloadwebtrees-b4da02a0df04e995a24e998d472f1052d498565b.tar.gz
webtrees-b4da02a0df04e995a24e998d472f1052d498565b.tar.bz2
webtrees-b4da02a0df04e995a24e998d472f1052d498565b.zip
Combine large and small icons - use CSS to downsize when small icons are required
Diffstat (limited to 'index_edit.php')
-rw-r--r--index_edit.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/index_edit.php b/index_edit.php
index 2bcf0da779..9a5179329c 100644
--- a/index_edit.php
+++ b/index_edit.php
@@ -68,12 +68,12 @@ if (!isset($index)) $index=1;
$block_id=safe_REQUEST($_REQUEST, 'block_id');
// Define all the icons we're going to use
-$IconUarrow = "<img src=\"".$WT_IMAGES['uarrow']['other']."\" width=\"20\" height=\"20\" alt=\"\" />";
-$IconDarrow = "<img src=\"".$WT_IMAGES['darrow']['other']."\" width=\"20\" height=\"20\" alt=\"\" />";
-$IconRarrow = "<img src=\"".$WT_IMAGES['rarrow']['other']."\" width=\"20\" height=\"20\" alt=\"\" />";
-$IconLarrow = "<img src=\"".$WT_IMAGES['larrow']['other']."\" width=\"20\" height=\"20\" alt=\"\" />";
-$IconRDarrow = "<img src=\"".$WT_IMAGES['rdarrow']['other']."\" width=\"20\" height=\"20\" alt=\"\" />";
-$IconLDarrow = "<img src=\"".$WT_IMAGES['ldarrow']['other']."\" width=\"20\" height=\"20\" alt=\"\" />";
+$IconUarrow = "<img src=\"".$WT_IMAGES['uarrow']."\" width=\"20\" height=\"20\" alt=\"\" />";
+$IconDarrow = "<img src=\"".$WT_IMAGES['darrow']."\" width=\"20\" height=\"20\" alt=\"\" />";
+$IconRarrow = "<img src=\"".$WT_IMAGES['rarrow']."\" width=\"20\" height=\"20\" alt=\"\" />";
+$IconLarrow = "<img src=\"".$WT_IMAGES['larrow']."\" width=\"20\" height=\"20\" alt=\"\" />";
+$IconRDarrow = "<img src=\"".$WT_IMAGES['rdarrow']."\" width=\"20\" height=\"20\" alt=\"\" />";
+$IconLDarrow = "<img src=\"".$WT_IMAGES['ldarrow']."\" width=\"20\" height=\"20\" alt=\"\" />";
$all_blocks=array();
foreach (WT_Module::getActiveBlocks() as $name=>$block) {