Merge pull request #11300 from storybookjs/args-style-refinements

Controls: Style refinements
This commit is contained in:
Michael Shilman 2020-06-25 09:58:07 +08:00 committed by GitHub
commit 74eec68261
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 17 deletions

View File

@ -114,7 +114,7 @@ const ButtonWrapper = styled.button<ButtonWrapperProps>(
} }
: {}; : {};
}, },
({ theme, tertiary, inForm }) => ({ theme, tertiary, inForm, small }) =>
tertiary tertiary
? { ? {
background: background:
@ -125,6 +125,8 @@ const ButtonWrapper = styled.button<ButtonWrapperProps>(
boxShadow: `${theme.input.border} 0 0 0 1px inset`, boxShadow: `${theme.input.border} 0 0 0 1px inset`,
borderRadius: theme.input.borderRadius, borderRadius: theme.input.borderRadius,
...(inForm && small ? { padding: '10px 16px' } : {}),
'&:hover': { '&:hover': {
background: background:
theme.base === 'light' theme.base === 'light'

View File

@ -24,13 +24,11 @@ const Label = styled.label(({ theme }) => ({
border: 'none', border: 'none',
background: 'transparent', background: 'transparent',
cursor: 'pointer', cursor: 'pointer',
borderRadius: '3em',
'&:focus': { '&:focus': {
outline: 'none', outline: 'none',
boxShadow: `${theme.color.secondary} 0 0 0 1px inset !important`,
'& ~ span': {
boxShadow: `${theme.color.secondary} 0 0 0 1px inset !important`,
},
}, },
}, },
@ -82,7 +80,7 @@ const parse = (value: string | null) => value === 'true';
export type BooleanProps = ControlProps<BooleanValue> & BooleanConfig; export type BooleanProps = ControlProps<BooleanValue> & BooleanConfig;
export const BooleanControl: FC<BooleanProps> = ({ name, value, onChange }) => ( export const BooleanControl: FC<BooleanProps> = ({ name, value, onChange }) => (
<Label htmlFor={name}> <Label htmlFor={name} title={value ? 'Change to false' : 'Change to true'}>
<input <input
id={name} id={name}
name={name} name={name}

View File

@ -39,19 +39,21 @@ const formatTime = (value: Date | number) => {
const FlexSpaced = styled.div({ const FlexSpaced = styled.div({
flex: 1, flex: 1,
display: 'flex', display: 'flex',
'&& > *': {
input: {
marginLeft: 10, marginLeft: 10,
flex: 1,
height: 32, // hardcode height bc Chromium bug https://bugs.chromium.org/p/chromium/issues/detail?id=417606
'&::-webkit-calendar-picker-indicator': {
opacity: 0.5,
height: 12,
},
}, },
'&& > *:first-of-type': { 'input:first-of-type': {
marginLeft: 0, marginLeft: 0,
}, },
}); });
const FlexInput = styled(Form.Input)({
flex: 1,
'&::-webkit-calendar-picker-indicator': {
opacity: 0.5,
},
});
export type DateProps = ControlProps<DateValue> & DateConfig; export type DateProps = ControlProps<DateValue> & DateConfig;
export const DateControl: FC<DateProps> = ({ name, value, onChange }) => { export const DateControl: FC<DateProps> = ({ name, value, onChange }) => {
@ -92,7 +94,7 @@ export const DateControl: FC<DateProps> = ({ name, value, onChange }) => {
return ( return (
<FlexSpaced> <FlexSpaced>
<FlexInput <Form.Input
type="date" type="date"
max="9999-12-31" // I do this because of a rendering bug in chrome max="9999-12-31" // I do this because of a rendering bug in chrome
ref={dateRef as RefObject<HTMLInputElement>} ref={dateRef as RefObject<HTMLInputElement>}
@ -100,7 +102,7 @@ export const DateControl: FC<DateProps> = ({ name, value, onChange }) => {
name={`${name}date`} name={`${name}date`}
onChange={onDateChange} onChange={onDateChange}
/> />
<FlexInput <Form.Input
type="time" type="time"
id={`${name}time`} id={`${name}time`}
name={`${name}time`} name={`${name}time`}

View File

@ -28,7 +28,7 @@ const styles = ({ theme }: { theme: Theme }): CSSObject => ({
borderRadius: theme.input.borderRadius, borderRadius: theme.input.borderRadius,
fontSize: theme.typography.size.s2 - 1, fontSize: theme.typography.size.s2 - 1,
lineHeight: '20px', lineHeight: '20px',
padding: '.42em 1em', // 32 padding: '.46em 1em', // 32
'&:focus': { '&:focus': {
boxShadow: `${theme.color.secondary} 0 0 0 1px inset`, boxShadow: `${theme.color.secondary} 0 0 0 1px inset`,