Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Learn More

mouse scroll wheel not working in Bookmarks list

  • 4 respostas
  • 2 têm este problema
  • 12 visualizações
  • Última resposta por cor-el

more options

when i click on BOOKMARKS from the Menu Bar and the list appears, i put the cursor in the list somewhere and use the mouse scroll wheel to scroll down (or up after i go down) because my list is so long (off the bottom of the page). the problem is this: if the cursor is on a FOLDER in the list NOTHING happens - if the cursor is on an actual Bookmark it will scroll. my list is full of folders off the bottom so this is a pain in the ass behavior. i have researched this on the net and have found this issue is not new to Firefox. unfortunately there was never a clear reason/fix.

when i click on BOOKMARKS from the Menu Bar and the list appears, i put the cursor in the list somewhere and use the mouse scroll wheel to scroll down (or up after i go down) because my list is so long (off the bottom of the page). the problem is this: if the cursor is on a FOLDER in the list NOTHING happens - if the cursor is on an actual Bookmark it will scroll. my list is full of folders off the bottom so this is a pain in the ass behavior. i have researched this on the net and have found this issue is not new to Firefox. unfortunately there was never a clear reason/fix.

Todas as respostas (4)

more options

Maybe add scroll bars.

Add code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

/* BOOKMARKS MENU - scroll bar */
#bookmarksMenuPopup scrollbox,
#bookmarks-menu-button scrollbox,
#PlacesChevronPopup scrollbox,
#PlacesToolbarItems scrollbox {overflow-y:auto!important}

#bookmarksMenuPopup autorepeatbutton,
#bookmarks-menu-button autorepeatbutton,
#PlacesChevronPopup autorepeatbutton,
#PlacesToolbarItems autorepeatbutton {display:none!important}

/* LIST-ALL-TABS - scroll bar */
#alltabs-popup scrollbox {overflow-y:auto!important}
#alltabs-popup .autorepeatbutton-up,
#alltabs-popup .autorepeatbutton-down {display:none!important}

/* LIST-ALL-TABS - always visible */
#tabbrowser-tabs ~ #alltabs-button {visibility:visible!important}

  • create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • use a plain text editor like Notepad to create a (new) userChrome.css file in the chrome folder (file name is case sensitive)
  • paste the code in the userChrome.css file in the editor window
  • make sure that the userChrome.css file starts with the default @namespace line
  • make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userChrome.css.
    otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file

You can use the button on the "Help -> Troubleshooting Information" (about:support) page to go to the current Firefox profile folder or use the about:profiles page.

more options

thank you cor-el for your reply. i did NOT have a userChrome.css file so i created it. still have the same problem as mentioned above. i think i now know what is happening. when the Bookmarks list is down and you place the cursor on a FOLDER and try to scroll, the 'scroll focus' (?) is directed to/in that expanded 'Folder List' that the cursor is on, NOT on the main Bookmarks list. does this reasoning make sense? i don't know if this is fixable, the 'scroll focus' needs to be directed in the list it is currently 'in'. thanks

more options

addendum maybe if the 'auto-expand' is turned off so you have to actually 'click' on a folder to display it's list the 'scroll focus' would stay in the main list - just a thought. thanks

more options

With the above posted code in the CSS file named userChrome.css you should see a vertical scroll bar that allows to scroll this list very easily by dragging the scroll thump up and down. If the code isn't working as it should then make sure that the file is in the correct location and has the correct name (i.e. shows as a CSS file named userChrome.css and not as a text file named userChrome.css.txt) and is a plain text file and not a special formatted file. You can drag the file in a Firefox window to see the file name and its content.