elfeed icon indicating copy to clipboard operation
elfeed copied to clipboard

need update in elfeed-web so that the 2 scrolls ( title and news ) are independent.

Open dineshbhardwaj opened this issue 5 years ago • 2 comments

Currently when I scroll the titles/heads then the news part also scrolls down. As soon as i go down to read any news and click it goes back above to the top of the file and I have to scroll again to reach the place till which I had read news. Could you please make this small change in index.html and elfeed.css to independent the 2 scrolls.

Addition needed in elfeed.css ( background colour can be adjusted based on your preference)

#side-nav {
    position: fixed;
    width: 250px;
    height:100vh;
    left: 0;
    right: 0;
    overflow-y: scroll;
    background-color: ghostwhite;
    top: 60px;
}

#content-col {
    margin: 60px 0 0 250px;
    padding: 0 30px;
    overflow-y: scroll;
    position: fixed;
    left: 0;
    top: 0;
    height:100vh;
    background-color: white;
}

Change needed in index.html

      <div id="side-nav" class="large-5 columns">

      <div id="content-col" class="large-7 columns">
 

dineshbhardwaj avatar Dec 10 '20 03:12 dineshbhardwaj

Could you give me these changes as a pull request? That would make it really easy for me to accept. Thanks! (Note: I do not personally use elfeed-web, and so it's not really maintained right now.)

skeeto avatar Dec 11 '20 01:12 skeeto

Ok, I will do it.

dineshbhardwaj avatar Dec 11 '20 08:12 dineshbhardwaj