diff --git a/backend.php b/backend.php
index 6d1f4368..efb58325 100644
--- a/backend.php
+++ b/backend.php
@@ -1658,7 +1658,7 @@
if (!get_pref($link, 'ENABLE_FEED_CATS')) {
print "
- Select |
+ |
Title |
Link |
Update Interval |
@@ -1692,7 +1692,7 @@
print "
$edit_cat |
";
print "
- Select |
+ |
Title |
Link |
Update Interval |
@@ -1844,7 +1844,7 @@
";
print "
- Select | Title |
+ | Title |
";
$lnum = 0;
@@ -1870,7 +1870,7 @@
if (!$edit_cat_id || $subop != "editCat") {
- print " | ";
print "" .
@@ -2081,7 +2081,7 @@
| ";
print "
- Select |
+ |
Filter expression |
Feed |
Match |
@@ -2115,7 +2115,7 @@
if (!$line["description"]) $line["description"] = "[No description]";
- print " | ";
print "" .
@@ -2376,7 +2376,7 @@
| ";
print "
- Select | SQL expression
+ | | SQL expression
(?)
|
Caption |
";
@@ -2406,7 +2406,7 @@
if (!$line["description"]) $line["description"] = "[No caption]";
- print " | ";
print "" .
@@ -3099,7 +3099,7 @@
| ";
print "
- Select |
+ |
Username |
Access Level |
Last login |
";
@@ -3129,7 +3129,7 @@
if ($uid == $_SESSION["uid"]) {
- print " | ";
print "".$line["login"]." | ";
@@ -3137,7 +3137,7 @@
} else if (!$edit_uid || $subop != "edit") {
- print " | ";
print "" .
diff --git a/tt-rss.css b/tt-rss.css
index e4954035..d95f1315 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -444,13 +444,20 @@ input {
/* preferences */
tr.title td {
- font-weight : bold;
border-width : 0px 0px 1px 0px;
border-color : #f0f0f0;
border-style : solid;
font-size : x-small;
+ color : gray;
}
+tr.title td a {
+ color : gray;
+}
+
+tr.title td a:hover {
+ color : #5050aa;
+}
table.prefFeedList td.feedEditCat {
font-size : large;
|