summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/pref-prefs.php12
-rw-r--r--themes/graycube/theme.css7
-rw-r--r--tt-rss.css8
3 files changed, 21 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"));
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;