rails_panel icon indicating copy to clipboard operation
rails_panel copied to clipboard

Long lists scroll off the screen

Open bbugh opened this issue 6 years ago • 0 comments

Some of our report pages have a lot of partials (that cache). On the initial uncached page render, there are so many partials that the RailsPanel popup scrolls off the bottom of the screen, and we can't see it without Cmd+- to shrink the page size. Even then, some pages overflow off the bottom.

Our solution has been to set some css on .profiler-popup using the Stylebot Chrome extension, but I thought perhaps the panel could support this natively rather easily.

.profiler-popup {
  height: 100vh;
  overflow: scroll;
}

bbugh avatar Feb 16 '18 12:02 bbugh