Commit 0d85e1b4 authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray

Change max-height of all dropdowns to 312px

parent 8a7bbe1f
...@@ -28,7 +28,9 @@ ...@@ -28,7 +28,9 @@
.dropdown-menu, .dropdown-menu,
.dropdown-menu-nav { .dropdown-menu-nav {
@include set-visible; @include set-visible;
min-height: 40px; min-height: $dropdown-min-height;
max-height: $dropdown-max-height;
overflow: auto;
@media (max-width: $screen-xs-max) { @media (max-width: $screen-xs-max) {
width: 100%; width: 100%;
......
...@@ -260,7 +260,7 @@ ...@@ -260,7 +260,7 @@
} }
.filtered-search-input-dropdown-menu { .filtered-search-input-dropdown-menu {
max-height: 260px; max-height: $dropdown-max-height;
max-width: 280px; max-width: 280px;
overflow: auto; overflow: auto;
......
...@@ -334,7 +334,8 @@ $regular_font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-San ...@@ -334,7 +334,8 @@ $regular_font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-San
* Dropdowns * Dropdowns
*/ */
$dropdown-width: 300px; $dropdown-width: 300px;
$dropdown-max-height: 215px; $dropdown-min-height: 40px;
$dropdown-max-height: 312px;
$dropdown-vertical-offset: 4px; $dropdown-vertical-offset: 4px;
$dropdown-link-color: #555; $dropdown-link-color: #555;
$dropdown-link-hover-bg: $row-hover; $dropdown-link-hover-bg: $row-hover;
......
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
} }
.dropdown-menu { .dropdown-menu {
max-height: 250px; max-height: $dropdown-max-height;
overflow-y: auto; overflow-y: auto;
} }
......
...@@ -322,13 +322,6 @@ ...@@ -322,13 +322,6 @@
} }
} }
.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;
......
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