google-code-backups / rsslounge

Automatically exported from code.google.com/p/rsslounge
0 stars 0 forks source link

Feature Request: Moving Content Area / Scrollable Feed List #31

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago

 Hi!

First of all thanks for this great rss reader application, nice to see
people investing work into stuff that allows one the keep its data on
private servers instead of using services of companies.

I have a rather large list of feeds in rsslounge which brings me to one
usability problem:

- The list of feeds is longer than the screen
- I want to read individual feeds
- I have to scroll down to the feed, select it
- I have to scroll up to the top content area to read the feed content
- Scroll down for the next feed and so on.....

I suggest to either have the list of feeds individually scrollable if it is
longer than the screen or have the main content area moved automatically
down to where I scrolled.
I think this enhancement would greatly improve the workflow for users with
large feed list.

best regards and keep up the good work

Original issue reported on code.google.com by waveri...@spamblock.netzgehirn.de on 28 Apr 2010 at 8:46

GoogleCodeExporter commented 8 years ago

Original comment by zzuzzlwuzzl@googlemail.com on 2 Dec 2010 at 6:28

GoogleCodeExporter commented 8 years ago

Original comment by zzuzzlwuzzl@googlemail.com on 30 Jan 2011 at 10:33

GoogleCodeExporter commented 8 years ago
A quick patch to add a scrollbar to your feeds list.

Edit public/stylesheets/all.css
Add at the end : 
div#feeds
{
        width: 260px;
}
#feeds-list
{
        overflow-y: auto;
        overflow-x: hidden;
        height: 650px;
}

Not perfect, but greater than scrolling to the top every time you choose a 
feed...

Original comment by nicodo...@gmail.com on 6 Apr 2011 at 6:34