diff --git a/netbox/project-static/dist/netbox.css b/netbox/project-static/dist/netbox.css index 501149f58..48923cfbb 100644 Binary files a/netbox/project-static/dist/netbox.css and b/netbox/project-static/dist/netbox.css differ diff --git a/netbox/project-static/styles/overrides/_bootstrap.scss b/netbox/project-static/styles/overrides/_bootstrap.scss index f24e18890..005535f48 100644 --- a/netbox/project-static/styles/overrides/_bootstrap.scss +++ b/netbox/project-static/styles/overrides/_bootstrap.scss @@ -1,4 +1,11 @@ // Disable smooth scrolling for intra-page links html { - scroll-behavior: auto !important; + scroll-behavior: auto !important; +} + +// Prevent dropdown menus from being clipped inside responsive tables +.table-responsive { + .dropdown, .btn-group, .btn-group-vertical { + position: static; + } }