update defaultMessages
This commit is contained in:
parent
2921d14b75
commit
f247e79369
3 changed files with 19 additions and 5 deletions
|
@ -1420,6 +1420,18 @@
|
||||||
"context": "weight",
|
"context": "weight",
|
||||||
"string": "{value} {unit}"
|
"string": "{value} {unit}"
|
||||||
},
|
},
|
||||||
|
"src_dot_components_dot_messages_dot_1219076963": {
|
||||||
|
"context": "snackbar expand",
|
||||||
|
"string": "Expand"
|
||||||
|
},
|
||||||
|
"src_dot_components_dot_messages_dot_2473863536": {
|
||||||
|
"context": "snackbar button undo",
|
||||||
|
"string": "Undo"
|
||||||
|
},
|
||||||
|
"src_dot_components_dot_messages_dot_3444275093": {
|
||||||
|
"context": "snackbar collapse",
|
||||||
|
"string": "Collapse"
|
||||||
|
},
|
||||||
"src_dot_configuration": {
|
"src_dot_configuration": {
|
||||||
"context": "configuration section name",
|
"context": "configuration section name",
|
||||||
"string": "Configuration"
|
"string": "Configuration"
|
||||||
|
|
|
@ -14,9 +14,9 @@ export interface IMessage {
|
||||||
|
|
||||||
export const notificationOptions = {
|
export const notificationOptions = {
|
||||||
containerStyle: {
|
containerStyle: {
|
||||||
zIndex: 1000
|
zIndex: 1200
|
||||||
},
|
},
|
||||||
offset: "20px",
|
|
||||||
position: positions.TOP_RIGHT,
|
position: positions.TOP_RIGHT,
|
||||||
timeout: 3000
|
timeout: 3000
|
||||||
};
|
};
|
||||||
|
|
|
@ -149,13 +149,15 @@ export const useStyles = makeStyles(
|
||||||
position: "relative"
|
position: "relative"
|
||||||
},
|
},
|
||||||
borderRadius: 4,
|
borderRadius: 4,
|
||||||
paddingBottom: 15
|
paddingBottom: 15,
|
||||||
|
paddingRight: 40,
|
||||||
|
position: "relative"
|
||||||
},
|
},
|
||||||
snackbarContainer: {
|
snackbarContainer: {
|
||||||
borderRadius: 4,
|
borderRadius: 4,
|
||||||
display: "block",
|
display: "block",
|
||||||
margin: theme.spacing(2, 2, 0, 0),
|
margin: theme.spacing(2, 2, 0, 2),
|
||||||
maxWidth: 480,
|
maxWidth: 450,
|
||||||
pointerEvents: "all",
|
pointerEvents: "all",
|
||||||
position: "relative"
|
position: "relative"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue