Merge branch 'master' into add/readonly-mode
This commit is contained in:
commit
c9cf8dcb9b
13 changed files with 212 additions and 188 deletions
|
@ -42,5 +42,7 @@ All notable, unreleased changes to this project will be documented in this file.
|
||||||
- Fix empty attribute values - #218 by @dominik-zeglen
|
- Fix empty attribute values - #218 by @dominik-zeglen
|
||||||
- Add language switch - #213 by @dominik-zeglen
|
- Add language switch - #213 by @dominik-zeglen
|
||||||
- Fix copy - #223, #224 by @dominik-zeglen
|
- Fix copy - #223, #224 by @dominik-zeglen
|
||||||
|
- Fix ui improvements - #226 by @benekex2
|
||||||
- Fix attribute errors - #216 by @dominik-zeglen
|
- Fix attribute errors - #216 by @dominik-zeglen
|
||||||
|
- Fix column picker - #228 by @dominik-zeglen
|
||||||
- Add readonly mode - #229 by @dominik-zeglen
|
- Add readonly mode - #229 by @dominik-zeglen
|
||||||
|
|
|
@ -74,7 +74,7 @@ const AttributeProperties: React.FC<AttributePropertiesProps> = ({
|
||||||
<ControlledCheckbox
|
<ControlledCheckbox
|
||||||
name={"filterableInStorefront" as keyof FormData}
|
name={"filterableInStorefront" as keyof FormData}
|
||||||
label={intl.formatMessage({
|
label={intl.formatMessage({
|
||||||
defaultMessage: "Use in faceted navigation",
|
defaultMessage: "Use in Faceted Navigation",
|
||||||
description: "attribute is filterable in storefront"
|
description: "attribute is filterable in storefront"
|
||||||
})}
|
})}
|
||||||
checked={data.filterableInStorefront}
|
checked={data.filterableInStorefront}
|
||||||
|
|
|
@ -42,15 +42,25 @@ import ThemeSwitch from "./ThemeSwitch";
|
||||||
const styles = (theme: Theme) =>
|
const styles = (theme: Theme) =>
|
||||||
createStyles({
|
createStyles({
|
||||||
appAction: {
|
appAction: {
|
||||||
|
[theme.breakpoints.down("sm")]: {
|
||||||
|
left: 0,
|
||||||
|
width: "100%"
|
||||||
|
},
|
||||||
bottom: 0,
|
bottom: 0,
|
||||||
gridColumn: 2,
|
gridColumn: 2,
|
||||||
|
height: 70,
|
||||||
position: "sticky",
|
position: "sticky",
|
||||||
zIndex: 10
|
zIndex: 10
|
||||||
},
|
},
|
||||||
appLoader: {
|
appLoader: {
|
||||||
height: appLoaderHeight,
|
height: appLoaderHeight,
|
||||||
|
marginBottom: theme.spacing.unit * 2,
|
||||||
zIndex: 1201
|
zIndex: 1201
|
||||||
},
|
},
|
||||||
|
appLoaderPlaceholder: {
|
||||||
|
height: appLoaderHeight,
|
||||||
|
marginBottom: theme.spacing.unit * 2
|
||||||
|
},
|
||||||
arrow: {
|
arrow: {
|
||||||
marginLeft: theme.spacing.unit * 2,
|
marginLeft: theme.spacing.unit * 2,
|
||||||
transition: theme.transitions.duration.standard + "ms"
|
transition: theme.transitions.duration.standard + "ms"
|
||||||
|
@ -75,11 +85,7 @@ const styles = (theme: Theme) =>
|
||||||
header: {
|
header: {
|
||||||
display: "flex",
|
display: "flex",
|
||||||
height: 40,
|
height: 40,
|
||||||
marginBottom: theme.spacing.unit * 3,
|
marginBottom: theme.spacing.unit * 3
|
||||||
marginTop: theme.spacing.unit * 2
|
|
||||||
},
|
|
||||||
hide: {
|
|
||||||
opacity: 0
|
|
||||||
},
|
},
|
||||||
isMenuSmall: {
|
isMenuSmall: {
|
||||||
"& path": {
|
"& path": {
|
||||||
|
@ -256,6 +262,11 @@ const styles = (theme: Theme) =>
|
||||||
[theme.breakpoints.up("sm")]: {
|
[theme.breakpoints.up("sm")]: {
|
||||||
paddingBottom: theme.spacing.unit * 3
|
paddingBottom: theme.spacing.unit * 3
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
viewContainer: {
|
||||||
|
minHeight: `calc(100vh - ${theme.spacing.unit * 2 +
|
||||||
|
appLoaderHeight +
|
||||||
|
70}px)`
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -316,12 +327,6 @@ const AppLayout = withStyles(styles, {
|
||||||
{({ isProgress }) => (
|
{({ isProgress }) => (
|
||||||
<AppHeaderContext.Provider value={appHeaderAnchor}>
|
<AppHeaderContext.Provider value={appHeaderAnchor}>
|
||||||
<AppActionContext.Provider value={appActionAnchor}>
|
<AppActionContext.Provider value={appActionAnchor}>
|
||||||
<LinearProgress
|
|
||||||
className={classNames(classes.appLoader, {
|
|
||||||
[classes.hide]: !isProgress
|
|
||||||
})}
|
|
||||||
color="primary"
|
|
||||||
/>
|
|
||||||
<div className={classes.root}>
|
<div className={classes.root}>
|
||||||
<div className={classes.sideBar}>
|
<div className={classes.sideBar}>
|
||||||
<ResponsiveDrawer
|
<ResponsiveDrawer
|
||||||
|
@ -370,6 +375,15 @@ const AppLayout = withStyles(styles, {
|
||||||
[classes.contentToggle]: isMenuSmall
|
[classes.contentToggle]: isMenuSmall
|
||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
|
{isProgress ? (
|
||||||
|
<LinearProgress
|
||||||
|
className={classes.appLoader}
|
||||||
|
color="primary"
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
|
<div className={classes.appLoaderPlaceholder} />
|
||||||
|
)}
|
||||||
|
<div className={classes.viewContainer}>
|
||||||
<div>
|
<div>
|
||||||
<Container>
|
<Container>
|
||||||
<div className={classes.header}>
|
<div className={classes.header}>
|
||||||
|
@ -400,7 +414,10 @@ const AppLayout = withStyles(styles, {
|
||||||
<Chip
|
<Chip
|
||||||
avatar={
|
avatar={
|
||||||
user.avatar && (
|
user.avatar && (
|
||||||
<Avatar alt="user" src={user.avatar.url} />
|
<Avatar
|
||||||
|
alt="user"
|
||||||
|
src={user.avatar.url}
|
||||||
|
/>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
className={classes.userChip}
|
className={classes.userChip}
|
||||||
|
@ -436,7 +453,9 @@ const AppLayout = withStyles(styles, {
|
||||||
>
|
>
|
||||||
<Paper>
|
<Paper>
|
||||||
<ClickAwayListener
|
<ClickAwayListener
|
||||||
onClickAway={() => setMenuState(false)}
|
onClickAway={() =>
|
||||||
|
setMenuState(false)
|
||||||
|
}
|
||||||
mouseEvent="onClick"
|
mouseEvent="onClick"
|
||||||
>
|
>
|
||||||
<Menu>
|
<Menu>
|
||||||
|
@ -470,6 +489,7 @@ const AppLayout = withStyles(styles, {
|
||||||
</Container>
|
</Container>
|
||||||
</div>
|
</div>
|
||||||
<main className={classes.view}>{children}</main>
|
<main className={classes.view}>{children}</main>
|
||||||
|
</div>
|
||||||
<div className={classes.appAction} ref={appActionAnchor} />
|
<div className={classes.appAction} ref={appActionAnchor} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -83,7 +83,7 @@ const styles = (theme: Theme) =>
|
||||||
display: "flex",
|
display: "flex",
|
||||||
height: 30,
|
height: 30,
|
||||||
justifyContent: "center",
|
justifyContent: "center",
|
||||||
margin: 9,
|
margin: "5px 9px",
|
||||||
width: 30
|
width: 30
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -87,7 +87,8 @@ const ColumnPickerContent: React.FC<ColumnPickerContentProps> = props => {
|
||||||
const anchor = React.useRef<HTMLDivElement>();
|
const anchor = React.useRef<HTMLDivElement>();
|
||||||
const scrollPosition = useElementScroll(anchor);
|
const scrollPosition = useElementScroll(anchor);
|
||||||
|
|
||||||
const dropShadow = anchor.current
|
const dropShadow =
|
||||||
|
anchor.current && scrollPosition
|
||||||
? scrollPosition.y + anchor.current.clientHeight <
|
? scrollPosition.y + anchor.current.clientHeight <
|
||||||
anchor.current.scrollHeight
|
anchor.current.scrollHeight
|
||||||
: false;
|
: false;
|
||||||
|
|
|
@ -6,7 +6,7 @@ import React from "react";
|
||||||
const styles = (theme: Theme) =>
|
const styles = (theme: Theme) =>
|
||||||
createStyles({
|
createStyles({
|
||||||
label: {
|
label: {
|
||||||
marginLeft: theme.spacing.unit * 2
|
marginLeft: theme.spacing.unit * 3.5
|
||||||
},
|
},
|
||||||
labelText: {
|
labelText: {
|
||||||
fontSize: 14
|
fontSize: 14
|
||||||
|
|
|
@ -93,7 +93,6 @@ const SingleAutocompleteSelectFieldComponent = withStyles(styles, {
|
||||||
inputValue,
|
inputValue,
|
||||||
selectedItem,
|
selectedItem,
|
||||||
toggleMenu,
|
toggleMenu,
|
||||||
openMenu,
|
|
||||||
closeMenu,
|
closeMenu,
|
||||||
highlightedIndex,
|
highlightedIndex,
|
||||||
reset
|
reset
|
||||||
|
@ -127,13 +126,13 @@ const SingleAutocompleteSelectFieldComponent = withStyles(styles, {
|
||||||
}),
|
}),
|
||||||
endAdornment: (
|
endAdornment: (
|
||||||
<div>
|
<div>
|
||||||
<ArrowDropdownIcon onClick={toggleMenu} />
|
<ArrowDropdownIcon />
|
||||||
</div>
|
</div>
|
||||||
),
|
),
|
||||||
error,
|
error,
|
||||||
id: undefined,
|
id: undefined,
|
||||||
onBlur: closeMenu,
|
onBlur: closeMenu,
|
||||||
onFocus: openMenu
|
onClick: toggleMenu
|
||||||
}}
|
}}
|
||||||
error={error}
|
error={error}
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
|
|
|
@ -71,6 +71,7 @@ interface TimelineProps extends WithStyles<typeof styles> {
|
||||||
|
|
||||||
interface TimelineAddNoteProps extends WithStyles<typeof styles> {
|
interface TimelineAddNoteProps extends WithStyles<typeof styles> {
|
||||||
message: string;
|
message: string;
|
||||||
|
reset: () => void;
|
||||||
onChange(event: React.ChangeEvent<any>);
|
onChange(event: React.ChangeEvent<any>);
|
||||||
onSubmit(event: React.FormEvent<any>);
|
onSubmit(event: React.FormEvent<any>);
|
||||||
}
|
}
|
||||||
|
@ -82,9 +83,14 @@ export const Timeline = withStyles(styles, { name: "Timeline" })(
|
||||||
);
|
);
|
||||||
|
|
||||||
export const TimelineAddNote = withStyles(styles, { name: "TimelineAddNote" })(
|
export const TimelineAddNote = withStyles(styles, { name: "TimelineAddNote" })(
|
||||||
({ classes, message, onChange, onSubmit }: TimelineAddNoteProps) => {
|
({ classes, message, onChange, onSubmit, reset }: TimelineAddNoteProps) => {
|
||||||
const intl = useIntl();
|
const intl = useIntl();
|
||||||
|
|
||||||
|
const submit = e => {
|
||||||
|
reset();
|
||||||
|
onSubmit(e);
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={classes.noteRoot}>
|
<div className={classes.noteRoot}>
|
||||||
<CardContent className={classes.noteTitle}>
|
<CardContent className={classes.noteTitle}>
|
||||||
|
@ -106,7 +112,7 @@ export const TimelineAddNote = withStyles(styles, { name: "TimelineAddNote" })(
|
||||||
multiline
|
multiline
|
||||||
InputProps={{
|
InputProps={{
|
||||||
endAdornment: (
|
endAdornment: (
|
||||||
<Button color="primary" onClick={onSubmit}>
|
<Button color="primary" onClick={e => submit(e)}>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
defaultMessage="Send"
|
defaultMessage="Send"
|
||||||
description="add order note, button"
|
description="add order note, button"
|
||||||
|
|
|
@ -14,7 +14,6 @@ import CRC from "crc-32";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import { DateTime } from "../Date";
|
import { DateTime } from "../Date";
|
||||||
import Hr from "../Hr";
|
|
||||||
|
|
||||||
const palette = [
|
const palette = [
|
||||||
colors.amber,
|
colors.amber,
|
||||||
|
@ -49,20 +48,22 @@ const styles = (theme: Theme) =>
|
||||||
},
|
},
|
||||||
cardContent: {
|
cardContent: {
|
||||||
"&:last-child": {
|
"&:last-child": {
|
||||||
paddingBottom: 16
|
padding: 16
|
||||||
}
|
|
||||||
},
|
},
|
||||||
content: {
|
boxShadow: "0px 5px 10px rgba(0, 0, 0, 0.05)"
|
||||||
marginTop: theme.spacing.unit * 2
|
|
||||||
},
|
},
|
||||||
root: {
|
root: {
|
||||||
position: "relative"
|
position: "relative"
|
||||||
},
|
},
|
||||||
title: {
|
title: {
|
||||||
|
"& p": {
|
||||||
|
fontSize: "14px"
|
||||||
|
},
|
||||||
alignItems: "center",
|
alignItems: "center",
|
||||||
display: "flex",
|
display: "flex",
|
||||||
justifyContent: "space-between",
|
justifyContent: "space-between",
|
||||||
marginBottom: theme.spacing.unit
|
marginBottom: theme.spacing.unit,
|
||||||
|
paddingLeft: theme.spacing.unit * 3
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -83,17 +84,15 @@ export const TimelineNote = withStyles(styles, { name: "TimelineNote" })(
|
||||||
>
|
>
|
||||||
<PersonIcon />
|
<PersonIcon />
|
||||||
</Avatar>
|
</Avatar>
|
||||||
<Card className={classes.card}>
|
|
||||||
<CardContent className={classes.cardContent}>
|
|
||||||
<div className={classes.title}>
|
<div className={classes.title}>
|
||||||
<Typography>{user.email}</Typography>
|
<Typography>{user.email}</Typography>
|
||||||
<Typography>
|
<Typography>
|
||||||
<DateTime date={date} />
|
<DateTime date={date} />
|
||||||
</Typography>
|
</Typography>
|
||||||
</div>
|
</div>
|
||||||
<Hr />
|
<Card className={classes.card}>
|
||||||
|
<CardContent className={classes.cardContent}>
|
||||||
<Typography
|
<Typography
|
||||||
className={classes.content}
|
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: message.replace("\n", "<br />")
|
__html: message.replace("\n", "<br />")
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -28,7 +28,6 @@ const styles = (theme: Theme) =>
|
||||||
marginBottom: theme.spacing.unit * 3
|
marginBottom: theme.spacing.unit * 3
|
||||||
},
|
},
|
||||||
cardSubtitle: {
|
cardSubtitle: {
|
||||||
color: theme.palette.primary.main,
|
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
height: "20px",
|
height: "20px",
|
||||||
lineHeight: 0.9
|
lineHeight: 0.9
|
||||||
|
|
|
@ -207,9 +207,10 @@ const OrderHistory = withStyles(styles, { name: "OrderHistory" })(
|
||||||
{history ? (
|
{history ? (
|
||||||
<Timeline>
|
<Timeline>
|
||||||
<Form initial={{ message: "" }} onSubmit={onNoteAdd} resetOnSubmit>
|
<Form initial={{ message: "" }} onSubmit={onNoteAdd} resetOnSubmit>
|
||||||
{({ change, data, submit }) => (
|
{({ change, data, reset, submit }) => (
|
||||||
<TimelineAddNote
|
<TimelineAddNote
|
||||||
message={data.message}
|
message={data.message}
|
||||||
|
reset={reset}
|
||||||
onChange={change}
|
onChange={change}
|
||||||
onSubmit={submit}
|
onSubmit={submit}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -6727,12 +6727,6 @@ exports[`Storyshots Generics / Timeline with order notes 1`] = `
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<div
|
|
||||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiPaper-rounded-id MuiCard-root-id TimelineNote-card-id"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="MuiCardContent-root-id TimelineNote-cardContent-id"
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
class="TimelineNote-title-id"
|
class="TimelineNote-title-id"
|
||||||
>
|
>
|
||||||
|
@ -6753,11 +6747,14 @@ exports[`Storyshots Generics / Timeline with order notes 1`] = `
|
||||||
</time>
|
</time>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<hr
|
<div
|
||||||
class="Hr-root-id"
|
class="MuiPaper-root-id MuiPaper-elevation0-id MuiPaper-rounded-id MuiCard-root-id TimelineNote-card-id"
|
||||||
/>
|
>
|
||||||
|
<div
|
||||||
|
class="MuiCardContent-root-id TimelineNote-cardContent-id"
|
||||||
|
>
|
||||||
<p
|
<p
|
||||||
class="MuiTypography-root-id MuiTypography-body2-id TimelineNote-content-id"
|
class="MuiTypography-root-id MuiTypography-body2-id"
|
||||||
>
|
>
|
||||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit leo lobortis eget.
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit leo lobortis eget.
|
||||||
</p>
|
</p>
|
||||||
|
@ -6787,12 +6784,6 @@ exports[`Storyshots Generics / Timeline with order notes 1`] = `
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<div
|
|
||||||
class="MuiPaper-root-id MuiPaper-elevation0-id MuiPaper-rounded-id MuiCard-root-id TimelineNote-card-id"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="MuiCardContent-root-id TimelineNote-cardContent-id"
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
class="TimelineNote-title-id"
|
class="TimelineNote-title-id"
|
||||||
>
|
>
|
||||||
|
@ -6813,11 +6804,14 @@ exports[`Storyshots Generics / Timeline with order notes 1`] = `
|
||||||
</time>
|
</time>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<hr
|
<div
|
||||||
class="Hr-root-id"
|
class="MuiPaper-root-id MuiPaper-elevation0-id MuiPaper-rounded-id MuiCard-root-id TimelineNote-card-id"
|
||||||
/>
|
>
|
||||||
|
<div
|
||||||
|
class="MuiCardContent-root-id TimelineNote-cardContent-id"
|
||||||
|
>
|
||||||
<p
|
<p
|
||||||
class="MuiTypography-root-id MuiTypography-body2-id TimelineNote-content-id"
|
class="MuiTypography-root-id MuiTypography-body2-id"
|
||||||
>
|
>
|
||||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit leo lobortis eget.
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit leo lobortis eget.
|
||||||
</p>
|
</p>
|
||||||
|
@ -8378,7 +8372,7 @@ exports[`Storyshots Views / Attributes / Attribute details create 1`] = `
|
||||||
<span
|
<span
|
||||||
class="MuiTypography-root-id MuiTypography-body2-id MuiFormControlLabel-label-id"
|
class="MuiTypography-root-id MuiTypography-body2-id MuiFormControlLabel-label-id"
|
||||||
>
|
>
|
||||||
Use in faceted navigation
|
Use in Faceted Navigation
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
<div
|
<div
|
||||||
|
@ -9023,7 +9017,7 @@ exports[`Storyshots Views / Attributes / Attribute details default 1`] = `
|
||||||
<span
|
<span
|
||||||
class="MuiTypography-root-id MuiTypography-body2-id MuiFormControlLabel-label-id"
|
class="MuiTypography-root-id MuiTypography-body2-id MuiFormControlLabel-label-id"
|
||||||
>
|
>
|
||||||
Use in faceted navigation
|
Use in Faceted Navigation
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
<div
|
<div
|
||||||
|
@ -9673,7 +9667,7 @@ exports[`Storyshots Views / Attributes / Attribute details form errors 1`] = `
|
||||||
<span
|
<span
|
||||||
class="MuiTypography-root-id MuiTypography-body2-id MuiFormControlLabel-label-id"
|
class="MuiTypography-root-id MuiTypography-body2-id MuiFormControlLabel-label-id"
|
||||||
>
|
>
|
||||||
Use in faceted navigation
|
Use in Faceted Navigation
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
<div
|
<div
|
||||||
|
@ -10263,7 +10257,7 @@ exports[`Storyshots Views / Attributes / Attribute details loading 1`] = `
|
||||||
<span
|
<span
|
||||||
class="MuiTypography-root-id MuiTypography-body2-id MuiFormControlLabel-label-id MuiFormControlLabel-disabled-id"
|
class="MuiTypography-root-id MuiTypography-body2-id MuiFormControlLabel-label-id MuiFormControlLabel-disabled-id"
|
||||||
>
|
>
|
||||||
Use in faceted navigation
|
Use in Faceted Navigation
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
<div
|
<div
|
||||||
|
@ -10915,7 +10909,7 @@ exports[`Storyshots Views / Attributes / Attribute details multiple select input
|
||||||
<span
|
<span
|
||||||
class="MuiTypography-root-id MuiTypography-body2-id MuiFormControlLabel-label-id"
|
class="MuiTypography-root-id MuiTypography-body2-id MuiFormControlLabel-label-id"
|
||||||
>
|
>
|
||||||
Use in faceted navigation
|
Use in Faceted Navigation
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
<div
|
<div
|
||||||
|
@ -11488,7 +11482,7 @@ exports[`Storyshots Views / Attributes / Attribute details no values 1`] = `
|
||||||
<span
|
<span
|
||||||
class="MuiTypography-root-id MuiTypography-body2-id MuiFormControlLabel-label-id"
|
class="MuiTypography-root-id MuiTypography-body2-id MuiFormControlLabel-label-id"
|
||||||
>
|
>
|
||||||
Use in faceted navigation
|
Use in Faceted Navigation
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
<div
|
<div
|
||||||
|
|
|
@ -60,7 +60,7 @@ export default (colors: IThemeColors): Theme =>
|
||||||
},
|
},
|
||||||
flat: {
|
flat: {
|
||||||
"& span": {
|
"& span": {
|
||||||
color: colors.font.gray
|
color: colors.font.default
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
flatPrimary: {
|
flatPrimary: {
|
||||||
|
@ -100,6 +100,9 @@ export default (colors: IThemeColors): Theme =>
|
||||||
},
|
},
|
||||||
MuiDialogContent: {
|
MuiDialogContent: {
|
||||||
root: {
|
root: {
|
||||||
|
"& label": {
|
||||||
|
overflowX: "hidden"
|
||||||
|
},
|
||||||
padding: "5px 24px 24px"
|
padding: "5px 24px 24px"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue