openstyles/stylus

[Bug] Missing scrollbar in pop-up list of installed styles when "Styles before commands" is off

myfonj opened this issue · 1 comments

Bug Report

Bug Description

Having more than 19 styles installed and controls shown above them produces unreachable items on the bottom of unsrollable pane.

Screenshots

image

System Information

  • OS: Windows 10
  • Browser: Firefox 125.0b2
  • Stylus Version: 1.5.46
  • DPI factor: 150%

Additional Context

NOT having controls above the list makes the list scrollable.

Until the fix is published the workaround is to add a userstyle:

@-moz-document regexp("^\\w+-extension://[^/]+/popup.*") {
  body {
    max-height: 600px;
  }
  #installed-wrapper {
    overflow-y: auto;
  }
}

You might need to replace 600px with 600/150*100 i.e. 400px.