Files
port-ui/app/static/css/navigation.css

31 lines
697 B
CSS
Raw Normal View History

2025-03-18 14:27:07 +01:00
/* Top-level dropdown menu */
.nav-item .dropdown-menu {
2025-03-18 14:27:07 +01:00
position: absolute; /* Important for positioning */
top: 100%; /* Default opening direction: downwards */
left: 0;
2025-03-18 14:27:07 +01:00
z-index: 1050; /* Ensures the menu appears above other elements */
2025-01-14 21:31:02 +01:00
}
2025-03-18 14:27:07 +01:00
/* Submenu position */
2025-01-14 21:31:02 +01:00
.dropdown-submenu > .dropdown-menu {
2025-01-14 17:19:09 +01:00
position: absolute;
top: 0;
2025-03-18 14:27:07 +01:00
left: 100%; /* Opens to the right */
z-index: 1050;
}
2025-03-18 14:27:07 +01:00
/* Ensure a smooth transition */
.dropdown-menu {
transition: all 0.3s ease-in-out;
2025-03-18 14:03:19 +01:00
}
nav.navbar.menu-header {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
2025-03-18 14:27:07 +01:00
}
2025-03-18 14:03:19 +01:00
nav.navbar.menu-footer {
border-top-left-radius: 0;
border-top-right-radius: 0;
2025-03-18 14:27:07 +01:00
}