mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Minor updates to tooltip styles
This commit is contained in:
parent
22d52f0362
commit
4beb82aaf5
@ -56,7 +56,7 @@ const Arrow = styled.div<ArrowProps>(
|
||||
placement,
|
||||
theme.color[color] || color || theme.base === 'light'
|
||||
? lighten(theme.background.app)
|
||||
: darken(theme.background.app),
|
||||
: theme.background.app,
|
||||
'transparent'
|
||||
),
|
||||
borderBottomColor: match(
|
||||
@ -64,7 +64,7 @@ const Arrow = styled.div<ArrowProps>(
|
||||
placement,
|
||||
theme.color[color] || color || theme.base === 'light'
|
||||
? lighten(theme.background.app)
|
||||
: darken(theme.background.app),
|
||||
: theme.background.app,
|
||||
'transparent'
|
||||
),
|
||||
borderLeftColor: match(
|
||||
@ -72,7 +72,7 @@ const Arrow = styled.div<ArrowProps>(
|
||||
placement,
|
||||
theme.color[color] || color || theme.base === 'light'
|
||||
? lighten(theme.background.app)
|
||||
: darken(theme.background.app),
|
||||
: theme.background.app,
|
||||
'transparent'
|
||||
),
|
||||
borderRightColor: match(
|
||||
@ -80,7 +80,7 @@ const Arrow = styled.div<ArrowProps>(
|
||||
placement,
|
||||
theme.color[color] || color || theme.base === 'light'
|
||||
? lighten(theme.background.app)
|
||||
: darken(theme.background.app),
|
||||
: theme.background.app,
|
||||
'transparent'
|
||||
),
|
||||
})
|
||||
|
@ -20,7 +20,7 @@ const Links = styled.div(({ theme }) => ({
|
||||
}));
|
||||
|
||||
const Message = styled.div(({ theme }) => ({
|
||||
color: theme.textColor,
|
||||
color: theme.color.defaultText,
|
||||
lineHeight: '18px',
|
||||
}));
|
||||
|
||||
|
@ -12,7 +12,7 @@ const Note = styled.div(({ theme }) => ({
|
||||
whiteSpace: 'nowrap',
|
||||
pointerEvents: 'none',
|
||||
zIndex: -1,
|
||||
background: theme.base === 'light' ? 'rgba(60, 60, 60, 0.9)' : 'rgba(20, 20, 20, 0.85)',
|
||||
background: theme.base === 'light' ? 'rgba(60, 60, 60, 0.9)' : 'rgba(0, 0, 0, 0.95)',
|
||||
margin: 6,
|
||||
}));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user