Skip to content

Commit 3d357c8

Browse files
authored
Tab UX colors (#1349)
1 parent b2f3820 commit 3d357c8

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

portal-ui/src/screens/Console/Common/GenericWizard/GenericWizard.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,18 @@ const styles = (theme: Theme) =>
8585
maxHeight: 90,
8686
},
8787
verticalSteps: {
88-
borderRight: "1px solid #EAEAEA",
89-
background: "#FBFAFA",
88+
borderRight: "1px solid #E5E5E5",
89+
background: "#F8F8F8",
9090
},
9191
stepsContainer: {
9292
paddingTop: 0,
9393
"& .MuiButtonBase-root.Mui-selected": {
94-
background: "#EAEAEA",
94+
background: "#E5E5E5",
9595
},
9696
},
9797
stepItem: {
98+
minHeight: 60,
99+
borderBottom: "1px solid #E5E5E5",
98100
"&:hover": {
99101
background: "rgba(247,247,247,0.7)",
100102
},

portal-ui/src/screens/Console/Common/VerticalTabs/VerticalTabs.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const styles = (theme: Theme) =>
2828
},
2929
tabsHeaderContainer: {
3030
width: "300px",
31-
background: "#FBFAFA",
31+
background: "#F8F8F8",
3232
borderRight: "1px solid #EAEAEA",
3333
"& .MuiTabs-root": {
3434
"& .MuiTabs-indicator": {
@@ -46,6 +46,7 @@ const styles = (theme: Theme) =>
4646
},
4747
"&.Mui-selected": {
4848
background: "#E5E5E5",
49+
fontWeight: 600,
4950
},
5051
},
5152

@@ -79,6 +80,10 @@ const styles = (theme: Theme) =>
7980
},
8081
});
8182

83+
const tabStripStyle = {
84+
minHeight: 60,
85+
};
86+
8287
const VerticalTabs = ({
8388
children,
8489
classes,
@@ -123,6 +128,7 @@ const VerticalTabs = ({
123128
className={classes.tabHeader}
124129
key={`v-tab-${index}`}
125130
value={`${index}`}
131+
style={tabStripStyle}
126132
{...item}
127133
disableRipple
128134
disableTouchRipple

0 commit comments

Comments
 (0)