From 23e6eb95cd1d85587596f11df05b716b6f220dfb Mon Sep 17 00:00:00 2001 From: deva <deva> Date: Tue, 2 Mar 2010 19:28:55 +0000 Subject: Remove build-in home/stop icons. --- utils/modules/gallery.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'utils') diff --git a/utils/modules/gallery.php b/utils/modules/gallery.php index 3d6e638..3915a90 100644 --- a/utils/modules/gallery.php +++ b/utils/modules/gallery.php @@ -148,23 +148,23 @@ class Album { $str .= $this->photos[$photo - 1]->show($indent." ", "navicon"); $str .= $indent." </a>\n"; } else { - $str .= $indent." <a class=\"nav_icon\" href=\"?page=gallery&a=".$album."\">\n"; - $str .= $indent." <img alt=\"Stop\" src=\"gfx/stop.png\"/>\n"; + $str .= $indent." <a class=\"nav_icon stop_icon\" href=\"?page=gallery&a=".$album."\">\n"; + $str .= $indent." <span class=\"text\">Stop</span>\n"; $str .= $indent." </a>\n"; } - $str .= $indent." <a class=\"nav_icon\" href=\"?page=gallery&a=".$album."\">\n"; - $str .= $indent." <img alt=\"Home\" src=\"gfx/home.png\"/>\n"; - $str .= $indent." </a>\n"; + $str .= $indent." <a class=\"nav_icon home_icon\" href=\"?page=gallery&a=".$album."\">\n"; + $str .= $indent." <span class=\"text\">Home</span>\n"; + $str .= $indent." </a>\n"; if($this->photos[$photo + 1]) { $str .= $indent." <a class=\"nav_icon\" href=\"?page=gallery&a=".$album."&p=".($photo+1)."\">\n"; $str .= $this->photos[$photo + 1]->show($indent." ", "navicon"); $str .= $indent." </a>\n"; } else { - $str .= $indent." <a class=\"nav_icon\" href=\"?page=gallery&a=".$album."\">\n"; - $str .= $indent." <img alt=\"Stop\" src=\"gfx/stop.png\"/>\n"; - $str .= $indent." </a>\n"; + $str .= $indent." <a class=\"nav_icon stop_icon\" href=\"?page=gallery&a=".$album."\">\n"; + $str .= $indent." <span class=\"text\">Stop</span>\n"; + $str .= $indent." </a>\n"; } $str .= $indent."</span>\n"; -- cgit v1.2.3