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:
commit
c7e22d5a1c
3 changed files with 16 additions and 0 deletions
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
4
changelogs/unreleased/26206-fix-download-dropdown.yml
Normal file
4
changelogs/unreleased/26206-fix-download-dropdown.yml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: Set dropdown height fixed to 250px and make it scrollable
|
||||||
|
merge_request: 9063
|
||||||
|
author:
|
Loading…
Reference in a new issue