Commit de953b75 authored by Simon Knox's avatar Simon Knox

Merge branch '334699-issue-page-milestone-dropdown-has-two-scrollbars' into 'master'

Fix double scrollbar in milestones dropdown

See merge request gitlab-org/gitlab!64969
parents 99e80e3a ad8c22de
...@@ -30,7 +30,9 @@ ...@@ -30,7 +30,9 @@
.dropdown-menu { .dropdown-menu {
@include set-visible; @include set-visible;
min-height: $dropdown-min-height; min-height: $dropdown-min-height;
max-height: $dropdown-max-height; // Prevents double scrollbar on dropdowns that also
// have max-height set on an inner scrollable element
max-height: $dropdown-max-height-lg;
overflow-y: auto; overflow-y: auto;
&.dropdown-extended-height { &.dropdown-extended-height {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment