]> git.mjollnir.org Git - moodle.git/commitdiff
Some image spacing issues
authormoodler <moodler>
Sun, 4 May 2003 12:56:05 +0000 (12:56 +0000)
committermoodler <moodler>
Sun, 4 May 2003 12:56:05 +0000 (12:56 +0000)
course/lib.php
course/topics.php

index c1ce3c4b5d41c731a769a5a4ee71fa265fd0cdb2..981ee5f94731bfb86a6bed0d51f3e0449ca3ad00 100644 (file)
@@ -1112,10 +1112,10 @@ function make_editing_buttons($moduleid, $absolute=false, $visible=true, $str=NU
 
     if ($visible) {
         $hideshow = " <a title=\"$str->hide\" href=\"$path/mod.php?hide=$moduleid\"><img 
-                        src=\"$pixpath/t/hide.gif\" height=11 width=11 border=0></a>";
+                        src=\"$pixpath/t/hide.gif\" hspace=2 height=11 width=11 border=0></a>";
     } else {
         $hideshow = " <a title=\"$str->show\" href=\"$path/mod.php?show=$moduleid\"><img 
-                        src=\"$pixpath/t/show.gif\" height=11 width=11 border=0></a>";
+                        src=\"$pixpath/t/show.gif\" hspace=2 height=11 width=11 border=0></a>";
     }
 
     return "<a title=\"$str->delete\" href=\"$path/mod.php?delete=$moduleid\"><img 
index 94df410c3418043fd900c48c112dc8bbbd1ada45..83ddb1bd803d1ad5b4d6c41974d556713ddf3d8b 100644 (file)
             if (isediting($course->id)) {
                 if ($course->marker == $section) {  // Show the "light globe" on/off
                     echo "<a href=\"view.php?id=$course->id&marker=0\" title=\"$strmarkedthistopic\">".
-                         "<img src=\"$pixpath/i/marked.gif\" height=16 width=16 border=0></a><br />";
+                         "<img src=\"$pixpath/i/marked.gif\" vspace=3 height=16 width=16 border=0></a><br />";
                 } else {
                     echo "<a href=\"view.php?id=$course->id&marker=$section\" title=\"$strmarkthistopic\">".
-                         "<img src=\"$pixpath/i/marker.gif\" height=16 width=16 border=0></a><br />";
+                         "<img src=\"$pixpath/i/marker.gif\" vspace=3 height=16 width=16 border=0></a><br />";
                 }
 
                 if ($thissection->visible) {        // Show the hide/show eye
                     echo "<a href=\"view.php?id=$course->id&hide=$section\" title=\"$strtopichide\">".
-                         "<img src=\"$pixpath/i/hide.gif\" height=16 width=16 border=0></a><br />";
+                         "<img src=\"$pixpath/i/hide.gif\" vspace=3 height=16 width=16 border=0></a><br />";
                 } else {
                     echo "<a href=\"view.php?id=$course->id&show=$section\" title=\"$strtopicshow\">".
-                         "<img src=\"$pixpath/i/show.gif\" height=16 width=16 border=0></a><br />";
+                         "<img src=\"$pixpath/i/show.gif\" vspace=3 height=16 width=16 border=0></a><br />";
                 }
 
             }