mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Merge pull request #5712 from storybooks/minor-addon-UX-tweaks
Minor addon ux tweaks
This commit is contained in:
commit
d986e59721
@ -18,6 +18,9 @@ const ColorIcon = styled.span(
|
|||||||
},
|
},
|
||||||
({ filter }) => ({
|
({ filter }) => ({
|
||||||
filter: filter === 'mono' ? 'grayscale(100%)' : `url('#${filter}')`,
|
filter: filter === 'mono' ? 'grayscale(100%)' : `url('#${filter}')`,
|
||||||
|
}),
|
||||||
|
({ theme }) => ({
|
||||||
|
boxShadow: `${theme.appBorderColor} 0 0 0 1px inset`,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1,9 +1,14 @@
|
|||||||
import { styled } from '@storybook/theming';
|
import { styled } from '@storybook/theming';
|
||||||
|
|
||||||
export const ColorIcon = styled.span(({ background }: { background: string }) => ({
|
export const ColorIcon = styled.span(
|
||||||
borderRadius: '1rem',
|
({ background }: { background: string }) => ({
|
||||||
display: 'block',
|
borderRadius: '1rem',
|
||||||
height: '1rem',
|
display: 'block',
|
||||||
width: '1rem',
|
height: '1rem',
|
||||||
background,
|
width: '1rem',
|
||||||
}));
|
background,
|
||||||
|
}),
|
||||||
|
({ theme }) => ({
|
||||||
|
boxShadow: `${theme.appBorderColor} 0 0 0 1px inset`,
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
@ -8,7 +8,7 @@ import { SET_STORIES } from '@storybook/core-events';
|
|||||||
import { Icons, IconButton, WithTooltip, TooltipLinkList } from '@storybook/components';
|
import { Icons, IconButton, WithTooltip, TooltipLinkList } from '@storybook/components';
|
||||||
|
|
||||||
import { PARAM_KEY } from '../constants';
|
import { PARAM_KEY } from '../constants';
|
||||||
import { ColorIcon } from '../components';
|
import { ColorIcon } from '../components/ColorIcon';
|
||||||
import { BackgroundConfig, BackgroundSelectorItem } from '../models';
|
import { BackgroundConfig, BackgroundSelectorItem } from '../models';
|
||||||
|
|
||||||
const iframeId = 'storybook-preview-background';
|
const iframeId = 'storybook-preview-background';
|
||||||
|
@ -20,7 +20,7 @@ const createItem = memoize(1000)((id, name, value, change) => ({
|
|||||||
onClick: () => {
|
onClick: () => {
|
||||||
change({ selected: id, expanded: false });
|
change({ selected: id, expanded: false });
|
||||||
},
|
},
|
||||||
right: `${value.width}-${value.height}`,
|
right: `${value.width.replace('px', '')}x${value.height.replace('px', '')}`,
|
||||||
value,
|
value,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user