mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Fixes #15536: Fix clipping of dropdown menus inside responsive tables
This commit is contained in:
2
netbox/project-static/dist/netbox.css
vendored
2
netbox/project-static/dist/netbox.css
vendored
File diff suppressed because one or more lines are too long
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user