Modernize sidebar with DxTreeView and new responsive styles
Refactor NavMenu to use DevExpress DxTreeView for navigation, replacing the old NavLink-based menu. Update sidebar and navigation row styling to use CSS variables, remove Bootstrap-specific and SVG icon CSS, and add a responsive hamburger menu for small screens. Improve dark mode support and overall maintainability.
This commit is contained in:
@@ -18,11 +18,13 @@ main {
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
|
||||
background-color: var(--dx-color-surface-container, #f4f4f4);
|
||||
border-right: 1px solid var(--dx-color-outline-variant, #e0e0e0);
|
||||
}
|
||||
|
||||
.page.app-dark .sidebar {
|
||||
background-image: linear-gradient(180deg, #171717 0%, #0f2a46 70%);
|
||||
background-color: var(--dx-color-surface-container, #1e1e1e);
|
||||
border-right-color: var(--dx-color-outline-variant, #333);
|
||||
}
|
||||
|
||||
.top-row {
|
||||
|
||||
Reference in New Issue
Block a user