isaacplmann / ngx-contextmenu

An Angular component to show a context menu on an arbitrary component
MIT License
248 stars 91 forks source link

Issue with Scroll bar #125

Open SidduLakkarse opened 6 years ago

SidduLakkarse commented 6 years ago

Hi Isaac Mann,

How do i add scroll bar for context menu. i am tried to use cdkScrollable ,but it is not working.

Could you please help me out this issue.

Attached the screen shot for your reference. scrollissue

isaacplmann commented 6 years ago

Try something like this:

.ngx-contextmenu > ul {
  overflow: auto;
  max-height: 200px;
}
yuriy-bezrukov commented 5 years ago

Try something like this:

.ngx-contextmenu > ul {
  overflow: auto;
  max-height: 200px;
}

sub menu...

context-menu-content  ul {
    max-height: 500px;
    overflow: auto;
}