Bildgrößen definieren
bernd

bernd commited on 2009-02-17 17:06:44
Zeige 2 geänderte Dateien mit 5 Einfügungen und 4 Löschungen.


git-svn-id: https://svn.schokokeks.org/repos/tools/webinterface/trunk@1251 87cf0b9e-d624-0410-a070-f6ee81989793
... ...
@@ -221,6 +221,7 @@ div.overview div.block img {
221 221
   display: block;
222 222
   margin: 0 auto;
223 223
   margin-bottom: 1em;
224
+  height: 16px;
224 225
 }
225 226
 
226 227
 /*
... ...
@@ -31,7 +31,7 @@ if (count($vhosts) > 0)
31 31
     $fqdn = $vhost['fqdn'];
32 32
     $class = 'odd';
33 33
     if ($even) $class = 'even';
34
-    output("<tr class=\"{$class}\"><td>".internal_link('edit', $fqdn, "vhost={$vhost['id']}", 'title="Einstellungen bearbeiten"')."</td><td>".internal_link('save', "<img src=\"{$prefix}images/delete.png\" title=\"»{$vhost['fqdn']}« löschen\" alt=\"löschen\" />", 'action=delete&vhost='.$vhost['id'] )."</td><td>");
34
+    output("<tr class=\"{$class}\"><td>".internal_link('edit', $fqdn, "vhost={$vhost['id']}", 'title="Einstellungen bearbeiten"')."</td><td>".internal_link('save', "<img src=\"{$prefix}images/delete.png\" style=\"height: 16px; width: 16px;\" title=\"»{$vhost['fqdn']}« löschen\" alt=\"löschen\" />", 'action=delete&vhost='.$vhost['id'] )."</td><td>");
35 35
     $aliases = get_all_aliases($vhost['id']);
36 36
     $tmp = '';
37 37
     if (count($aliases) > 0)
... ...
@@ -72,13 +72,13 @@ if (count($vhosts) > 0)
72 72
       switch ($php)
73 73
       {
74 74
         case NULL:
75
-          $php = "<img src=\"{$prefix}images/error.png\" alt=\"aus\" title=\"PHP ausgeschaltet\" />";
75
+          $php = "<img src=\"{$prefix}images/error.png\" style=\"height: 18px; width: 18px;\" alt=\"aus\" title=\"PHP ausgeschaltet\" />";
76 76
           break;
77 77
         case 'mod_php':
78
-          $php = "<img src=\"{$prefix}images/warning.png\" alt=\"mod_php\" title=\"Veraltet: Bitte umstellen\" /> Apache-Modul";
78
+          $php = "<img src=\"{$prefix}images/warning.png\" style=\"height: 17px; width: 17px;\" alt=\"mod_php\" title=\"Veraltet: Bitte umstellen\" /> Apache-Modul";
79 79
           break;
80 80
         case 'fastcgi':
81
-          $php = "<img src=\"{$prefix}images/ok.png\" alt=\"ein\" title=\"PHP eingeschaltet\" />";
81
+          $php = "<img src=\"{$prefix}images/ok.png\" style=\"height: 17px; width: 17px;\" alt=\"ein\" title=\"PHP eingeschaltet\" />";
82 82
           break;
83 83
       }
84 84
       output("<td>{$php}</td>");
85 85