summaryrefslogtreecommitdiff
path: root/modules/pref-prefs.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-08-14 07:05:16 +0100
committerAndrew Dolgov <[email protected]>2008-08-14 07:05:16 +0100
commite351c4945da20622c88d7cc9ccdb9ba17a9f5bef (patch)
tree7adeb56085f5e8365606bb46815097447bc1ce59 /modules/pref-prefs.php
parentdb5c7f5ddfe3d6094bd818d121fdded87979d5ea (diff)
highlight option under mouse cursor in preferences
Diffstat (limited to 'modules/pref-prefs.php')
-rw-r--r--modules/pref-prefs.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/pref-prefs.php b/modules/pref-prefs.php
index cf3d3aee2..0add856db 100644
--- a/modules/pref-prefs.php
+++ b/modules/pref-prefs.php
@@ -227,7 +227,7 @@
$email = db_fetch_result($result, 0, "email");
print "<tr><td width=\"40%\">".__('E-mail')."</td>";
- print "<td><input class=\"editbox\" name=\"email\"
+ print "<td class=\"prefValue\"><input class=\"editbox\" name=\"email\"
onfocus=\"javascript:disableHotkeys();\"
onblur=\"javascript:enableHotkeys();\"
onkeypress=\"return filterCR(event, changeUserEmail)\"
@@ -259,7 +259,7 @@
print "<tr><td colspan='3'><h3>".__("Authentication")."</h3></tr></td>";
print "<tr><td width=\"40%\">".__("Old password")."</td>";
- print "<td><input class=\"editbox\" type=\"password\"
+ print "<td class=\"prefValue\"><input class=\"editbox\" type=\"password\"
onfocus=\"javascript:disableHotkeys();\"
onblur=\"javascript:enableHotkeys();\"
onkeypress=\"return filterCR(event, changeUserPassword)\"
@@ -267,7 +267,7 @@
print "<tr><td width=\"40%\">".__("New password")."</td>";
- print "<td><input class=\"editbox\" type=\"password\"
+ print "<td class=\"prefValue\"><input class=\"editbox\" type=\"password\"
onfocus=\"javascript:disableHotkeys();\"
onblur=\"javascript:enableHotkeys();\"
onkeypress=\"return filterCR(event, changeUserPassword)\"
@@ -275,7 +275,7 @@
print "<tr><td width=\"40%\">".__("Confirm password")."</td>";
- print "<td><input class=\"editbox\" type=\"password\"
+ print "<td class=\"prefValue\"><input class=\"editbox\" type=\"password\"
onfocus=\"javascript:disableHotkeys();\"
onblur=\"javascript:enableHotkeys();\"
onkeypress=\"return filterCR(event, changeUserPassword)\"
@@ -382,13 +382,13 @@
$def_value = $line["def_value"];
$help_text = $line["help_text"];
- print "<td width=\"40%\" id=\"$pref_name\">" . __($line["short_desc"]);
+ print "<td width=\"40%\" class=\"prefName\" id=\"$pref_name\">" . __($line["short_desc"]);
if ($help_text) print "<div class=\"prefHelp\">".__($help_text)."</div>";
print "</td>";
- print "<td>";
+ print "<td class=\"prefValue\">";
if ($type_name == "bool") {
// print_select($pref_name, $value, array("true", "false"));