Skip to content

Commit

Permalink
fix: resolve tooltip debounce (#2733)
Browse files Browse the repository at this point in the history
* fix: resolve tooltip debounce

* fix: remove semi

Co-authored-by: liufu.lf <[email protected]>
  • Loading branch information
lxfu1 and liufu.lf authored Aug 6, 2020
1 parent d94157d commit f5114f4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/util/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1085,10 +1085,7 @@ export function createThemeByStylesheet(styleSheet: StyleSheet): LooseObject {
position: 'absolute',
visibility: 'hidden',
zIndex: 8,
transition:
'visibility 0.2s cubic-bezier(0.23, 1, 0.32, 1), ' +
'left 0.4s cubic-bezier(0.23, 1, 0.32, 1), ' +
'top 0.4s cubic-bezier(0.23, 1, 0.32, 1)',
transition: 'left 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0s, top 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0s',
backgroundColor: styleSheet.tooltipContainerFillColor,
opacity: styleSheet.tooltipContainerFillOpacity,
boxShadow: styleSheet.tooltipContainerShadow,
Expand Down

0 comments on commit f5114f4

Please sign in to comment.