mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 17:35:56 +00:00
highlight option under mouse cursor in preferences
This commit is contained in:
@@ -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"));
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user