Merge pull request #7521 from hiba-aldalaty/scalable-sidebar-new-implementation

New Scalable Side Nav design Implementation
This commit is contained in:
Ben Lambert
2021-12-02 13:08:35 +01:00
committed by GitHub
19 changed files with 959 additions and 29 deletions
+6
View File
@@ -41,6 +41,12 @@ export type BackstagePaletteAdditions = {
indicator: string;
color: string;
selectedColor: string;
navItem?: {
hoverBackground: string;
};
submenu?: {
background: string;
};
};
tabbar: {
indicator: string;
+12
View File
@@ -76,6 +76,12 @@ export const lightTheme = createTheme({
indicator: '#9BF0E1',
color: '#b5b5b5',
selectedColor: '#FFF',
navItem: {
hoverBackground: '#404040',
},
submenu: {
background: '#404040',
},
},
pinSidebarButton: {
icon: '#181818',
@@ -151,6 +157,12 @@ export const darkTheme = createTheme({
indicator: '#9BF0E1',
color: '#b5b5b5',
selectedColor: '#FFF',
navItem: {
hoverBackground: '#404040',
},
submenu: {
background: '#404040',
},
},
pinSidebarButton: {
icon: '#404040',
+6
View File
@@ -53,6 +53,12 @@ export type BackstagePaletteAdditions = {
indicator: string;
color: string;
selectedColor: string;
navItem?: {
hoverBackground: string;
};
submenu?: {
background: string;
};
};
tabbar: {
indicator: string;