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 "
".__('E-mail')." | ";
- print " | ".__("Authentication")." |
";
print "".__("Old password")." | ";
- print " | ".__("New password")." | ";
- print " | ".__("Confirm password")." | ";
- print "" . __($line["short_desc"]);
+ print " | " . __($line["short_desc"]);
if ($help_text) print " ".__($help_text)." ";
print " | ";
- print "";
+ print " | ";
if ($type_name == "bool") {
// print_select($pref_name, $value, array("true", "false"));
diff --git a/themes/graycube/theme.css b/themes/graycube/theme.css
index b62f00f9e..b7d0ac8b6 100644
--- a/themes/graycube/theme.css
+++ b/themes/graycube/theme.css
@@ -514,4 +514,11 @@ div.tagCloudContainer {
background : url("images/resize_horiz.png") top left;
}
+table.prefPrefsList tr:hover td.prefValue {
+ color : gray;
+}
+
+table.prefPrefsList tr:hover td.prefValue input {
+ color : gray;
+}
diff --git a/tt-rss.css b/tt-rss.css
index dda8600b7..e52d4717a 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -444,6 +444,14 @@ a.button {
/* preferences */
+table.prefPrefsList tr:hover td.prefValue {
+ color : #88b0f0;
+}
+
+table.prefPrefsList tr:hover td.prefValue input {
+ color : #88b0f0;
+}
+
tr.title td {
border-width : 0px 0px 1px 0px;
border-color : #ecf4ff;
|