Merge branch '26206-fix-download-dropdown' into 'master'

Set dropdown height fixed to `250px;` and make it scrollable

Closes #26206

See merge request !9063
This commit is contained in:
Clement Ho 2017-02-20 23:53:02 +00:00
commit c7e22d5a1c
3 changed files with 16 additions and 0 deletions

View file

@ -222,6 +222,11 @@
} }
} }
.dropdown-menu {
max-height: 250px;
overflow-y: auto;
}
.dropdown-toggle, .dropdown-toggle,
.dropdown-menu { .dropdown-menu {
color: $gl-text-color-secondary; color: $gl-text-color-secondary;

View file

@ -268,6 +268,13 @@
} }
} }
.project-repo-buttons {
.project-action-button .dropdown-menu {
max-height: 250px;
overflow-y: auto;
}
}
.split-one { .split-one {
display: inline-table; display: inline-table;
margin-right: 12px; margin-right: 12px;

View file

@ -0,0 +1,4 @@
---
title: Set dropdown height fixed to 250px and make it scrollable
merge_request: 9063
author: