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/include | |
| 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/include')
| -rw-r--r-- | frontends/php/include/config.inc.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/frontends/php/include/config.inc.php b/frontends/php/include/config.inc.php index 1277c498..64c8cc65 100644 --- a/frontends/php/include/config.inc.php +++ b/frontends/php/include/config.inc.php @@ -3096,7 +3096,7 @@ where h.hostid=i.hostid and i.itemid=f.itemid and f.triggerid=$triggerid"; } echo "Resource"; show_table2_h_delimiter(); - echo "<select name=\"right\">"; + echo "<select class=\"biginput\" name=\"right\">"; echo "<option value=\"Configuration of Zabbix\">Configuration of Zabbix"; echo "<option value=\"Default permission\">Default permission"; echo "<option value=\"Graph\">Graph"; @@ -3111,7 +3111,7 @@ where h.hostid=i.hostid and i.itemid=f.itemid and f.triggerid=$triggerid"; show_table2_v_delimiter(); echo "Permission"; show_table2_h_delimiter(); - echo "<select name=\"permission\">"; + echo "<select class=\"biginput\" name=\"permission\">"; echo "<option value=\"R\">Read-only"; echo "<option value=\"U\">Read-write"; echo "<option value=\"H\">Hide"; @@ -3121,7 +3121,7 @@ where h.hostid=i.hostid and i.itemid=f.itemid and f.triggerid=$triggerid"; show_table2_v_delimiter(); echo "Resource ID (0 for all)"; show_table2_h_delimiter(); - echo "<input name=\"id\" value=\"0\" size=4>"; + echo "<input class=\"biginput\" name=\"id\" value=\"0\" size=4>"; show_table2_v_delimiter2(); echo "<input type=\"submit\" name=\"register\" value=\"add permission\">"; @@ -3141,13 +3141,13 @@ where h.hostid=i.hostid and i.itemid=f.itemid and f.triggerid=$triggerid"; echo "Login name"; show_table2_h_delimiter(); // echo "<input name=\"name\" value=\"".$HTTP_GET_VARS["name"]."\" size=20>"; - echo "<input name=\"name\" value=\"\" size=20>"; + echo "<input class=\"biginput\" name=\"name\" value=\"\" size=20>"; show_table2_v_delimiter(); echo "Password"; show_table2_h_delimiter(); // echo "<input type=\"password\" name=\"password\" value=\"$password\" size=20>"; - echo "<input type=\"password\" name=\"password\" value=\"\" size=20>"; + echo "<input class=\"biginput\" type=\"password\" name=\"password\" value=\"\" size=20>"; show_table2_v_delimiter2(); echo "<input type=\"submit\" name=\"register\" value=\"Enter\">"; |
