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

25 lines
545 B
CSS
Raw Permalink 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
}
2025-07-05 20:08:00 +02:00
nav.navbar {
border-radius: 0;
2025-03-18 14:27:07 +01:00
}