Skip to content
Snippets Groups Projects
Commit 53d352aa authored by Jacob Schatz's avatar Jacob Schatz
Browse files

Merge branch '43273-fix-double-scrollbar-dropdowns' into 'master'

Resolve "Some dropdowns have two scroll bars."

Closes #43273

See merge request gitlab-org/gitlab-ce!17665
parents 0970f6f4 0b96a1ad
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -622,7 +622,7 @@
}
 
.dropdown-content {
max-height: $dropdown-max-height;
max-height: 252px;
overflow-y: auto;
}
 
Loading
Loading
@@ -699,6 +699,31 @@
border-radius: $border-radius-base;
}
 
.git-revision-dropdown {
.dropdown-content {
max-height: 215px;
}
}
.sidebar-move-issue-dropdown {
.dropdown-content {
max-height: 160px;
}
}
.dropdown-menu-author {
.dropdown-content {
max-height: 215px;
}
}
.dropdown-menu-labels {
.dropdown-content {
max-height: 128px;
}
}
.dropdown-menu-due-date {
.dropdown-content {
max-height: 230px;
Loading
Loading
Loading
Loading
@@ -152,3 +152,4 @@
.sidebar-collapsed-icon .sidebar-collapsed-value {
font-size: 12px;
}
Loading
Loading
@@ -31,8 +31,12 @@
.dropdown-menu-issues-board-new {
width: 320px;
 
.open & {
max-height: 400px;
}
.dropdown-content {
max-height: 150px;
max-height: 162px;
}
}
 
Loading
Loading
Loading
Loading
@@ -26,9 +26,15 @@
}
}
 
.dropdown-menu-labels {
.dropdown-content {
max-height: 135px;
}
}
.dropdown-new-label {
.dropdown-content {
max-height: 260px;
max-height: 136px;
}
}
 
Loading
Loading
Loading
Loading
@@ -112,7 +112,7 @@ input[type="checkbox"]:hover {
}
 
.dropdown-content {
max-height: 350px;
max-height: 302px;
}
}
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment