]> git.wh0rd.org - tt-rss.git/commitdiff
show all subscribed feeds with scrollbar in user details
authorAndrew Dolgov <fox@bah.spb.su>
Thu, 29 Dec 2005 15:53:57 +0000 (16:53 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Thu, 29 Dec 2005 15:53:57 +0000 (16:53 +0100)
backend.php
tt-rss.css

index c39908c9948669b1e78934831be18ef5a106509e..e92317680b4b38c4c2886c8bf737bf881956d575 100644 (file)
                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)) {
 
index bffbe0e23f25fe23c9ac38b5f536595a5d875645..b0c7bdcd64ddfc40ec18c087eada9ab3a766d6b1 100644 (file)
@@ -916,3 +916,9 @@ span.groupPrompt {
        font-size : x-small;
        color : #505050;
 }
+
+ul.userFeedList {
+       height : 300px;
+       overflow : auto;
+       list-style-type : none;
+}