make the context menu scrollable when exceeding total window height, closes #723

This commit is contained in:
zadam 2019-11-26 19:55:52 +01:00
parent 3ff24d53e5
commit 91487b338a

View File

@ -89,6 +89,11 @@ body {
font-size: inherit;
}
#context-menu-container {
max-height: 100vh;
overflow: auto; /* make it scrollable when exceeding total height of the window */
}
#context-menu-container, #context-menu-container .dropdown-menu {
padding: 3px 0 0;
z-index: 1111;