diff --git a/backend.php b/backend.php
index 7d072fc86..d850f0233 100644
--- a/backend.php
+++ b/backend.php
@@ -18,12 +18,13 @@
while ($line = pg_fetch_assoc($result)) {
$feed = $line["title"];
-
+ $feed_id = $line["id"];
+
$class = ($lnum % 2) ? "even" : "odd";
// if ($lnum == 2 || $lnum == 0) $feed = "$feed";
- $feed = "$feed";
+ $feed = "$feed";
print "
$feed";
++$lnum;
diff --git a/tt-rss.css b/tt-rss.css
index 3f09e2b1b..77e36b073 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -12,14 +12,33 @@ a {
a:hover {
text-decoration : underline;
+}
+a.button {
+ border : 1px solid #d0d0d0;
+ background : white;
+ color : black;
+ padding : 5px 10px 5px 10px;
+}
+
+a.button:hover {
+ background : #f0f0f0;
+ text-decoration : none;
+}
+
+td.toolbar {
+ height : 40px;
+ text-align : right;
+ background : #f0f0f0;
+ padding-right : 5px;
}
td.header {
font-size : 18pt;
background : #f0f0f0;
- height : 100px;
+ height : 50px;
padding-left : 80px;
+ padding-top : 30px;
font-weight : bold;
}
diff --git a/tt-rss.php b/tt-rss.php
index 2abcea1a6..cc854ea6b 100644
--- a/tt-rss.php
+++ b/tt-rss.php
@@ -9,8 +9,14 @@