commit
3f8c5b0c17
3 changed files with 5 additions and 2 deletions
|
@ -50,6 +50,7 @@ All notable, unreleased changes to this project will be documented in this file.
|
||||||
- Display Is Published column correctly in main Product Listing - #475 by @gabmartinez
|
- Display Is Published column correctly in main Product Listing - #475 by @gabmartinez
|
||||||
- Add Permission Groups section - #406 by @krzysztofwolski
|
- Add Permission Groups section - #406 by @krzysztofwolski
|
||||||
- Add warehouse management - #390 by @dominik-zeglen
|
- Add warehouse management - #390 by @dominik-zeglen
|
||||||
|
- Fix minor visual bugs - #521 by @dominik-zeglen
|
||||||
|
|
||||||
## 2.0.0
|
## 2.0.0
|
||||||
|
|
||||||
|
|
|
@ -85,6 +85,7 @@ const useStyles = makeStyles<Theme, OrderFulfillPageProps, ClassKey>(
|
||||||
},
|
},
|
||||||
colSku: {
|
colSku: {
|
||||||
textAlign: "right",
|
textAlign: "right",
|
||||||
|
textOverflow: "ellipsis",
|
||||||
width: 150
|
width: 150
|
||||||
},
|
},
|
||||||
error: {
|
error: {
|
||||||
|
|
|
@ -147,7 +147,8 @@ export default (colors: IThemeColors): Theme =>
|
||||||
},
|
},
|
||||||
"&::placeholder": {
|
"&::placeholder": {
|
||||||
opacity: "1 !important" as any
|
opacity: "1 !important" as any
|
||||||
}
|
},
|
||||||
|
color: colors.font.default
|
||||||
},
|
},
|
||||||
underline: {
|
underline: {
|
||||||
"&:after": {
|
"&:after": {
|
||||||
|
@ -198,7 +199,7 @@ export default (colors: IThemeColors): Theme =>
|
||||||
color: colors.primary
|
color: colors.primary
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
color: colors.input.text
|
color: fade(colors.input.text, 0.6)
|
||||||
},
|
},
|
||||||
shrink: {
|
shrink: {
|
||||||
// Negates x0.75 scale
|
// Negates x0.75 scale
|
||||||
|
|
Loading…
Reference in a new issue