diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2002-10-30 18:01:18 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2002-10-30 18:01:18 +0000 |
| commit | 7dbc199271a435d4e5e273d8d88ab9740e111675 (patch) | |
| tree | c288fdd97dafc65e868b74a596476b42957f2eb7 /frontends/php/sysmap.php | |
| parent | 4f542ffef143d61185f57886df4e073e6b14741e (diff) | |
| download | zabbix-7dbc199271a435d4e5e273d8d88ab9740e111675.tar.gz zabbix-7dbc199271a435d4e5e273d8d88ab9740e111675.tar.xz zabbix-7dbc199271a435d4e5e273d8d88ab9740e111675.zip | |
Better support for CSS.
git-svn-id: svn://svn.zabbix.com/trunk@549 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/sysmap.php')
| -rw-r--r-- | frontends/php/sysmap.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/frontends/php/sysmap.php b/frontends/php/sysmap.php index a9ee2026..4158f3ec 100644 --- a/frontends/php/sysmap.php +++ b/frontends/php/sysmap.php @@ -204,7 +204,7 @@ echo "Host"; show_table2_h_delimiter(); $result=DBselect("select hostid,host from hosts order by host"); - echo "<select name=\"hostid\" size=1>"; + echo "<select class=\"biginput\" name=\"hostid\" size=1>"; for($i=0;$i<DBnum_rows($result);$i++) { $hostid_=DBget_field($result,$i,0); @@ -223,7 +223,7 @@ show_table2_v_delimiter(); echo "Icon"; show_table2_h_delimiter(); - echo "<select name=\"icon\" size=1>"; + echo "<select class=\"biginput\" name=\"icon\" size=1>"; $icons=array(); $icons[0]="Server"; $icons[1]="Workstation"; @@ -245,17 +245,17 @@ show_table2_v_delimiter(); echo "Label"; show_table2_h_delimiter(); - echo "<input name=\"label\" size=32 value=\"$label\">"; + echo "<input class=\"biginput\" name=\"label\" size=32 value=\"$label\">"; show_table2_v_delimiter(); echo "Coordinate X"; show_table2_h_delimiter(); - echo "<input name=\"x\" size=5 value=\"$x\">"; + echo "<input class=\"biginput\" name=\"x\" size=5 value=\"$x\">"; show_table2_v_delimiter(); echo "Coordinate Y"; show_table2_h_delimiter(); - echo "<input name=\"y\" size=5 value=\"$y\">"; + echo "<input class=\"biginput\" name=\"y\" size=5 value=\"$y\">"; show_table2_v_delimiter2(); echo "<input type=\"submit\" name=\"register\" value=\"add\">"; @@ -277,7 +277,7 @@ echo "Host 1"; show_table2_h_delimiter(); $result=DBselect("select shostid,label from sysmaps_hosts where sysmapid=".$HTTP_GET_VARS["sysmapid"]." order by label"); - echo "<select name=\"shostid1\" size=1>"; + echo "<select class=\"biginput\" name=\"shostid1\" size=1>"; for($i=0;$i<DBnum_rows($result);$i++) { $shostid_=DBget_field($result,$i,0); @@ -298,7 +298,7 @@ echo "Host 2"; show_table2_h_delimiter(); $result=DBselect("select shostid,label from sysmaps_hosts where sysmapid=".$HTTP_GET_VARS["sysmapid"]." order by label"); - echo "<select name=\"shostid2\" size=1>"; + echo "<select class=\"biginput\" name=\"shostid2\" size=1>"; for($i=0;$i<DBnum_rows($result);$i++) { $shostid_=DBget_field($result,$i,0); |
