summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-29 16:53:57 +0100
committerAndrew Dolgov <[email protected]>2005-12-29 16:53:57 +0100
commit9b3e2cc74c4d86b1c7b03ffdc25585c5bfa15d20 (patch)
tree43269d558b429a8bcefa36812a884121a3c76ce0
parent4154a4158f225b0fd3d666472ac9c25bf46971ef (diff)
show all subscribed feeds with scrollbar in user details
-rw-r--r--backend.php4
-rw-r--r--tt-rss.css6
2 files changed, 8 insertions, 2 deletions
diff --git a/backend.php b/backend.php
index c39908c99..e92317680 100644
--- a/backend.php
+++ b/backend.php
@@ -3666,9 +3666,9 @@
print "<h1>Subscribed feeds</h1>";
$result = db_query($link, "SELECT id,title,site_url FROM ttrss_feeds
- WHERE owner_uid = '$uid' ORDER BY title LIMIT 20");
+ WHERE owner_uid = '$uid' ORDER BY title");
- print "<ul class=\"nomarks\">";
+ print "<ul class=\"userFeedList\">";
while ($line = db_fetch_assoc($result)) {
diff --git a/tt-rss.css b/tt-rss.css
index bffbe0e23..b0c7bdcd6 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -916,3 +916,9 @@ span.groupPrompt {
font-size : x-small;
color : #505050;
}
+
+ul.userFeedList {
+ height : 300px;
+ overflow : auto;
+ list-style-type : none;
+}