diff --git a/docs/release-notes/version-3.0.md b/docs/release-notes/version-3.0.md index 84cb74a25..47dd2509d 100644 --- a/docs/release-notes/version-3.0.md +++ b/docs/release-notes/version-3.0.md @@ -1,5 +1,13 @@ # NetBox v3.0 +## v3.0.0 (FUTURE) + +### Bug Fixes + +* [#6977](https://github.com/netbox-community/netbox/issues/6977) - Truncate global search dropdown on small screens + +--- + ## v3.0-beta2 (2021-08-13) ### Enhancements diff --git a/netbox/project-static/dist/netbox-dark.css b/netbox/project-static/dist/netbox-dark.css index 0fdf8704a..77aa46f1b 100644 Binary files a/netbox/project-static/dist/netbox-dark.css and b/netbox/project-static/dist/netbox-dark.css differ diff --git a/netbox/project-static/dist/netbox-light.css b/netbox/project-static/dist/netbox-light.css index ffc7a6471..6ec0e168f 100644 Binary files a/netbox/project-static/dist/netbox-light.css and b/netbox/project-static/dist/netbox-light.css differ diff --git a/netbox/project-static/styles/netbox.scss b/netbox/project-static/styles/netbox.scss index fc7c00c0d..f205dfc65 100644 --- a/netbox/project-static/styles/netbox.scss +++ b/netbox/project-static/styles/netbox.scss @@ -376,11 +376,9 @@ nav.search { // Object Selector Dropdown Menu .search-obj-selector { - @include media-breakpoint-down(lg) { - // Limit the height and enable scrolling on mobile devices. - max-height: 70vh; - overflow-y: auto; - } + // Limit the height and enable scrolling on mobile devices. + max-height: 70vh; + overflow-y: auto; .dropdown-item, .dropdown-header {