Commit 53d352aa authored by Jacob Schatz's avatar Jacob Schatz

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
...@@ -622,7 +622,7 @@ ...@@ -622,7 +622,7 @@
} }
.dropdown-content { .dropdown-content {
max-height: $dropdown-max-height; max-height: 252px;
overflow-y: auto; overflow-y: auto;
} }
...@@ -699,6 +699,31 @@ ...@@ -699,6 +699,31 @@
border-radius: $border-radius-base; 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-menu-due-date {
.dropdown-content { .dropdown-content {
max-height: 230px; max-height: 230px;
......
...@@ -152,3 +152,4 @@ ...@@ -152,3 +152,4 @@
.sidebar-collapsed-icon .sidebar-collapsed-value { .sidebar-collapsed-icon .sidebar-collapsed-value {
font-size: 12px; font-size: 12px;
} }
...@@ -31,8 +31,12 @@ ...@@ -31,8 +31,12 @@
.dropdown-menu-issues-board-new { .dropdown-menu-issues-board-new {
width: 320px; width: 320px;
.open & {
max-height: 400px;
}
.dropdown-content { .dropdown-content {
max-height: 150px; max-height: 162px;
} }
} }
......
...@@ -26,9 +26,15 @@ ...@@ -26,9 +26,15 @@
} }
} }
.dropdown-menu-labels {
.dropdown-content {
max-height: 135px;
}
}
.dropdown-new-label { .dropdown-new-label {
.dropdown-content { .dropdown-content {
max-height: 260px; max-height: 136px;
} }
} }
......
...@@ -112,7 +112,7 @@ input[type="checkbox"]:hover { ...@@ -112,7 +112,7 @@ input[type="checkbox"]:hover {
} }
.dropdown-content { .dropdown-content {
max-height: 350px; max-height: 302px;
} }
} }
......
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