Skip to content

Commit

Permalink
Handle cases where the selection is more than can fit on a screen.
Browse files Browse the repository at this point in the history
This isn't super graceful, but most users can't even select enough
tracks that this'd be an issue in most cases.

I guess keep an eye on w3c/csswg-drafts#5979
for a potentially more graceful solution.
  • Loading branch information
colons committed Oct 13, 2021
1 parent 901bec2 commit 02e7474
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nkdsu/static/less/_selection.less
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

#selhead .stuck {
pointer-events: auto;
max-height: 90vh;
overflow-y: auto;
.noise();
background-color: @bg;
pointer-events: auto;
Expand Down

0 comments on commit 02e7474

Please sign in to comment.