From a02fb7238b5ebe55c257089050f458e10cbd3fdc Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Thu, 21 Feb 2019 14:26:22 +0800 Subject: [PATCH] Merge pull request #5689 from storybooks/fix/bar-scrollbar-persistence Fix/bar scrollbar persistence --- .../__snapshots__/storyshots.test.js.snap | 38 +++++ lib/components/src/bar/bar.js | 11 ++ .../tabs/__snapshots__/tabs.stories.storyshot | 133 ++++++++++++++++++ .../__snapshots__/panel.stories.storyshot | 19 +++ .../__snapshots__/preview.stories.storyshot | 38 +++++ .../__snapshots__/about.stories.storyshot | 57 ++++++++ 6 files changed, 296 insertions(+) diff --git a/examples/official-storybook/tests/__snapshots__/storyshots.test.js.snap b/examples/official-storybook/tests/__snapshots__/storyshots.test.js.snap index 5a3abad4b5d..3cdd355530e 100644 --- a/examples/official-storybook/tests/__snapshots__/storyshots.test.js.snap +++ b/examples/official-storybook/tests/__snapshots__/storyshots.test.js.snap @@ -3353,11 +3353,30 @@ exports[`Storyshots UI|Settings/ShortcutsScreen default shortcuts 1`] = ` background: #FFFFFF linear-gradient(to bottom,transparent calc(100% - 1px),rgba(0,0,0,.1) calc(100% - 1px)); } +.emotion-8:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-8::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-8:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-8::-webkit-scrollbar-track { @@ -3865,11 +3884,30 @@ exports[`Storyshots UI|Settings/ShortcutsScreen default shortcuts 1`] = ` background: #FFFFFF linear-gradient(to bottom,transparent calc(100% - 1px),rgba(0,0,0,.1) calc(100% - 1px)); } +.emotion-8:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-8::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-8:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-8::-webkit-scrollbar-track { diff --git a/lib/components/src/bar/bar.js b/lib/components/src/bar/bar.js index afc1cfbc9c2..4d5f054e51d 100644 --- a/lib/components/src/bar/bar.js +++ b/lib/components/src/bar/bar.js @@ -45,11 +45,22 @@ export const Bar = styled.div( scrollbarWidth: ['slim', 3], scrollbarColor: 'transparent transparent', + '&:hover': { + scrollbarWidth: ['none', 0], + }, + '&::-webkit-scrollbar': { height: 3, width: 3, background: 'transparent', boxShadow: 'none', + display: 'none', + }, + '&:hover::-webkit-scrollbar': { + height: 3, + width: 3, + background: 'transparent', + display: 'block', }, '&::-webkit-scrollbar-track': { diff --git a/lib/components/src/tabs/__snapshots__/tabs.stories.storyshot b/lib/components/src/tabs/__snapshots__/tabs.stories.storyshot index e4a5400de7b..ec79f2959e4 100644 --- a/lib/components/src/tabs/__snapshots__/tabs.stories.storyshot +++ b/lib/components/src/tabs/__snapshots__/tabs.stories.storyshot @@ -22,11 +22,30 @@ exports[`Storyshots Basics|Tabs stateful - dynamic 1`] = ` background: #FFFFFF linear-gradient(to bottom,transparent calc(100% - 1px),rgba(0,0,0,.1) calc(100% - 1px)); } +.emotion-9:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-9::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-9:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-9::-webkit-scrollbar-track { @@ -355,11 +374,30 @@ exports[`Storyshots Basics|Tabs stateful - no initial 1`] = ` background: #FFFFFF linear-gradient(to bottom,transparent calc(100% - 1px),rgba(0,0,0,.1) calc(100% - 1px)); } +.emotion-9:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-9::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-9:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-9::-webkit-scrollbar-track { @@ -644,11 +682,30 @@ exports[`Storyshots Basics|Tabs stateful - static 1`] = ` background: #FFFFFF linear-gradient(to bottom,transparent calc(100% - 1px),rgba(0,0,0,.1) calc(100% - 1px)); } +.emotion-5:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-5::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-5:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-5::-webkit-scrollbar-track { @@ -891,11 +948,30 @@ exports[`Storyshots Basics|Tabs stateless - absolute 1`] = ` background: #FFFFFF linear-gradient(to bottom,transparent calc(100% - 1px),rgba(0,0,0,.1) calc(100% - 1px)); } +.emotion-9:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-9::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-9:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-9::-webkit-scrollbar-track { @@ -1241,11 +1317,30 @@ exports[`Storyshots Basics|Tabs stateless - bordered 1`] = ` background: #FFFFFF linear-gradient(to bottom,transparent calc(100% - 1px),rgba(0,0,0,.1) calc(100% - 1px)); } +.emotion-9:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-9::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-9:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-9::-webkit-scrollbar-track { @@ -1603,11 +1698,30 @@ exports[`Storyshots Basics|Tabs stateless - no scrolling 1`] = ` background: #FFFFFF linear-gradient(to bottom,transparent calc(100% - 1px),rgba(0,0,0,.1) calc(100% - 1px)); } +.emotion-9:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-9::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-9:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-9::-webkit-scrollbar-track { @@ -1938,11 +2052,30 @@ exports[`Storyshots Basics|Tabs stateless - with tools 1`] = ` background: #FFFFFF linear-gradient(to bottom,transparent calc(100% - 1px),rgba(0,0,0,.1) calc(100% - 1px)); } +.emotion-10:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-10::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-10:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-10::-webkit-scrollbar-track { diff --git a/lib/ui/src/components/panel/__snapshots__/panel.stories.storyshot b/lib/ui/src/components/panel/__snapshots__/panel.stories.storyshot index 9b47032ffb7..64a6e9de740 100644 --- a/lib/ui/src/components/panel/__snapshots__/panel.stories.storyshot +++ b/lib/ui/src/components/panel/__snapshots__/panel.stories.storyshot @@ -35,11 +35,30 @@ exports[`Storyshots UI|Panel default 1`] = ` background: #FFFFFF linear-gradient(to bottom,transparent calc(100% - 1px),rgba(0,0,0,.1) calc(100% - 1px)); } +.emotion-12:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-12::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-12:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-12::-webkit-scrollbar-track { diff --git a/lib/ui/src/components/preview/__snapshots__/preview.stories.storyshot b/lib/ui/src/components/preview/__snapshots__/preview.stories.storyshot index 81a329b8faa..58d47410daa 100644 --- a/lib/ui/src/components/preview/__snapshots__/preview.stories.storyshot +++ b/lib/ui/src/components/preview/__snapshots__/preview.stories.storyshot @@ -116,11 +116,30 @@ Array [ tranform: translateY(0px); } +.emotion-23:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-23::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-23:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-23::-webkit-scrollbar-track { @@ -560,11 +579,30 @@ Array [ tranform: translateY(0px); } +.emotion-29:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-29::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-29:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-29::-webkit-scrollbar-track { diff --git a/lib/ui/src/settings/__snapshots__/about.stories.storyshot b/lib/ui/src/settings/__snapshots__/about.stories.storyshot index 6b355b24dd0..158f7f13922 100644 --- a/lib/ui/src/settings/__snapshots__/about.stories.storyshot +++ b/lib/ui/src/settings/__snapshots__/about.stories.storyshot @@ -35,11 +35,30 @@ exports[`Storyshots UI|Settings/AboutScreen failed to fetch new version 1`] = ` background: #FFFFFF linear-gradient(to bottom,transparent calc(100% - 1px),rgba(0,0,0,.1) calc(100% - 1px)); } +.emotion-8:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-8::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-8:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-8::-webkit-scrollbar-track { @@ -585,11 +604,30 @@ exports[`Storyshots UI|Settings/AboutScreen new version required 1`] = ` background: #FFFFFF linear-gradient(to bottom,transparent calc(100% - 1px),rgba(0,0,0,.1) calc(100% - 1px)); } +.emotion-8:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-8::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-8:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-8::-webkit-scrollbar-track { @@ -1954,11 +1992,30 @@ exports[`Storyshots UI|Settings/AboutScreen up to date 1`] = ` background: #FFFFFF linear-gradient(to bottom,transparent calc(100% - 1px),rgba(0,0,0,.1) calc(100% - 1px)); } +.emotion-8:hover { + -webkit-scrollbar-width: none; + -moz-scrollbar-width: none; + -ms-scrollbar-width: none; + scrollbar-width: none; + -webkit-scrollbar-width: 0; + -moz-scrollbar-width: 0; + -ms-scrollbar-width: 0; + scrollbar-width: 0; +} + .emotion-8::-webkit-scrollbar { height: 3px; width: 3px; background: transparent; box-shadow: none; + display: none; +} + +.emotion-8:hover::-webkit-scrollbar { + height: 3px; + width: 3px; + background: transparent; + display: block; } .emotion-8::-webkit-scrollbar-track {