show all subscribed feeds with scrollbar in user details
This commit is contained in:
parent
4154a4158f
commit
9b3e2cc74c
2 changed files with 8 additions and 2 deletions
|
@ -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)) {
|
||||
|
||||
|
|
|
@ -916,3 +916,9 @@ span.groupPrompt {
|
|||
font-size : x-small;
|
||||
color : #505050;
|
||||
}
|
||||
|
||||
ul.userFeedList {
|
||||
height : 300px;
|
||||
overflow : auto;
|
||||
list-style-type : none;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue