spsdco / notes

Awesome note taking.
MIT License
560 stars 54 forks source link

Can't scroll through notes in notebook #176

Closed Conzar closed 9 years ago

Conzar commented 10 years ago

I have upgraded to version 2.0 (Ubuntu 14.04 64-bit). I am unable to scroll through the notes in any of the notebooks. With previous version, I was able to use the mouse wheel to scroll through the notes (to find the note I was looking for). Now, I can only view/edit the notes that are visible in the column and cannot scroll. There are no errors in the terminal when I try to use the mouse wheel.

image

thiagoarruda commented 9 years ago

Conzar, this was fixed in #161, however, it looks like the .deb package hasn't been updated. What I did to fix mine was to copy the fix manually:

  1. Find the folder where Springseed's resource files are located (for me it was /usr/share/springseed/resources/app/public)
  2. Open the application.css file, navigate to line 603 (tag #browser) and add the attribute overflow-y: auto;, so it looks like this:
#browser {
  position: absolute;
  background: #ecf0f1;
  overflow-x: hidden;
  overflow-y: auto; }
...

Hope that helps.

Conzar commented 9 years ago

Thanks @thiagoarruda ! That worked!