mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:11:23 +08:00
Polish
This commit is contained in:
parent
c43e016220
commit
be822727e1
@ -18,7 +18,7 @@ export const Action = styled.div({
|
||||
});
|
||||
|
||||
export const Counter = styled.div(({ theme }) => ({
|
||||
backgroundColor: theme.inverseBgColor,
|
||||
backgroundColor: theme.inverseTextBgColor,
|
||||
color: theme.inverseTextColor,
|
||||
fontSize: theme.typography.size.s1,
|
||||
fontWeight: theme.typography.weight.bold,
|
||||
|
@ -81,7 +81,7 @@ class ColorType extends React.Component {
|
||||
|
||||
return (
|
||||
<Button type="button" name={knob.name} onClick={this.handleClick} size="flex">
|
||||
{knob.value}
|
||||
{knob.value.toUpperCase()}
|
||||
<Swatch style={colorStyle} />
|
||||
{displayColorPicker ? (
|
||||
<Popover
|
||||
|
@ -22,7 +22,7 @@ const styles = ({ theme }) => ({
|
||||
...styleResets,
|
||||
|
||||
transition: 'all 200ms ease-out',
|
||||
color: theme.mainTextColor,
|
||||
color: 'inherit',
|
||||
background: theme.inputFill,
|
||||
boxShadow: `${theme.inputBorder} 0 0 0 1px inset`,
|
||||
borderRadius: theme.mainBorderRadius,
|
||||
|
@ -80,8 +80,8 @@ const Wrapper = styled.div(
|
||||
rgba(255, 255, 255, 0.97) 100%
|
||||
)`,
|
||||
filter: `
|
||||
drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.1))
|
||||
drop-shadow(0 2px 5px rgba(0, 0, 0, 0.05))
|
||||
drop-shadow(0px 5px 5px rgba(0,0,0,0.05))
|
||||
drop-shadow(0 1px 3px rgba(0,0,0,0.1))
|
||||
`,
|
||||
borderRadius: theme.mainBorderRadius,
|
||||
fontSize: theme.typography.size.s1,
|
||||
|
@ -5,20 +5,25 @@ import { baseFonts, monoFonts, color, background, typography, Theme } from '../b
|
||||
import { easing, animation } from '../animation';
|
||||
|
||||
const main = {
|
||||
// App color
|
||||
appBgColor: background.app, // TODO implement this
|
||||
|
||||
// Layout
|
||||
mainBorderColor: color.border,
|
||||
mainBorderRadius: 4,
|
||||
|
||||
// Typography
|
||||
mainTextFace: baseFonts.fontFamily,
|
||||
monoTextFace: monoFonts.fontFamily,
|
||||
mainTextSize: typography.size.s2 - 1, // 13px
|
||||
|
||||
// Color
|
||||
// Text colors (dark on light)
|
||||
mainTextColor: color.darkest,
|
||||
mainBgColor: color.lightest,
|
||||
inverseTextColor: color.lightest,
|
||||
inverseBgColor: color.mediumdark,
|
||||
mainTextBgColor: color.lightest,
|
||||
|
||||
// Layout
|
||||
mainBorderColor: color.border,
|
||||
mainBorderRadius: 4,
|
||||
// Text colors (light on dark)
|
||||
inverseTextColor: color.lightest,
|
||||
inverseTextBgColor: color.mediumdark,
|
||||
};
|
||||
|
||||
const bar = {
|
||||
|
@ -73,7 +73,7 @@ const FilterForm = styled.form(({ theme, focussed }) => ({
|
||||
|
||||
input: {
|
||||
color: theme.color.darkest,
|
||||
fontSize: theme.typography.size.s1,
|
||||
fontSize: theme.mainTextSize,
|
||||
lineHeight: '20px',
|
||||
paddingTop: '2px',
|
||||
paddingBottom: '2px',
|
||||
|
Loading…
x
Reference in New Issue
Block a user