diff --git a/addons/a11y/src/components/Tabs.js b/addons/a11y/src/components/Tabs.js index 0834a04e614..6dbc8fbbf26 100644 --- a/addons/a11y/src/components/Tabs.js +++ b/addons/a11y/src/components/Tabs.js @@ -11,7 +11,7 @@ const Container = styled.div({ const List = styled.div(({ theme }) => ({ boxShadow: `${theme.appBorderColor} 0 -1px 0 0 inset`, - background: '#f8f8fc', + background: 'rgba(0,0,0,.05)', flexWrap: 'wrap', display: 'flex', })); diff --git a/addons/actions/package.json b/addons/actions/package.json index 375fbb45890..1355071a786 100644 --- a/addons/actions/package.json +++ b/addons/actions/package.json @@ -29,6 +29,7 @@ "global": "^4.3.2", "lodash": "^4.17.11", "make-error": "^1.3.5", + "polished": "^2.3.3", "prop-types": "^15.6.2", "react": "^16.8.1", "react-inspector": "^2.3.0", diff --git a/addons/actions/src/components/ActionLogger/style.js b/addons/actions/src/components/ActionLogger/style.js index 86fe777b3e7..0aab9cbba91 100644 --- a/addons/actions/src/components/ActionLogger/style.js +++ b/addons/actions/src/components/ActionLogger/style.js @@ -1,4 +1,5 @@ import { styled } from '@storybook/theming'; +import { opacify } from 'polished'; export const Actions = styled.pre({ flex: 1, @@ -18,7 +19,7 @@ export const Action = styled.div({ }); export const Counter = styled.div(({ theme }) => ({ - backgroundColor: 'rgba(0, 0, 0, 0.5)', + backgroundColor: opacify(0.5, theme.appBorderColor), color: theme.color.inverseText, fontSize: theme.typography.size.s1, fontWeight: theme.typography.weight.bold, diff --git a/addons/knobs/src/components/Panel.js b/addons/knobs/src/components/Panel.js index 8685083912c..ff311c28a27 100644 --- a/addons/knobs/src/components/Panel.js +++ b/addons/knobs/src/components/Panel.js @@ -177,10 +177,10 @@ export default class KnobPanel extends PureComponent { dynamically interact with components - {' '} - using knobs. + ); diff --git a/addons/knobs/src/components/__tests__/__snapshots__/Panel.js.snap b/addons/knobs/src/components/__tests__/__snapshots__/Panel.js.snap index df555bca26b..d6b39c95eb6 100644 --- a/addons/knobs/src/components/__tests__/__snapshots__/Panel.js.snap +++ b/addons/knobs/src/components/__tests__/__snapshots__/Panel.js.snap @@ -40,8 +40,8 @@ Array [ .emotion-0 { min-width: 100px; - min-height: 32px; - margin-right: 16px; + font-weight: 700; + margin-right: 15px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -135,8 +135,8 @@ Array [ .emotion-0 { min-width: 100px; - min-height: 32px; - margin-right: 16px; + font-weight: 700; + margin-right: 15px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; diff --git a/addons/knobs/src/components/types/Checkboxes.js b/addons/knobs/src/components/types/Checkboxes.js index 78539711345..a15cf1d6412 100644 --- a/addons/knobs/src/components/types/Checkboxes.js +++ b/addons/knobs/src/components/types/Checkboxes.js @@ -2,6 +2,19 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { styled } from '@storybook/theming'; +const CheckboxesWrapper = styled.div(({ isInline }) => + isInline + ? { + display: 'flex', + flexWrap: 'wrap', + alignItems: 'center', + '> * + *': { + marginLeft: 10, + }, + } + : {} +); + const CheckboxFieldset = styled.fieldset({ border: 0, padding: 0, @@ -9,24 +22,11 @@ const CheckboxFieldset = styled.fieldset({ }); const CheckboxLabel = styled.label({ - fontSize: 11, - padding: '5px', + padding: '3px 0 3px 5px', + lineHeight: '18px', + display: 'inline-block', }); -const flex = ({ isInline }) => { - if (isInline) { - return { - display: 'flex', - flexWrap: 'wrap', - alignItems: 'center', - height: '100%', - }; - } - return null; -}; - -const FlexWrapper = styled.div(flex); - class CheckboxesType extends Component { constructor(props) { super(props); @@ -82,7 +82,7 @@ class CheckboxesType extends Component { return ( - {this.renderCheckboxList(knob)} + {this.renderCheckboxList(knob)} ); } diff --git a/addons/knobs/src/components/types/Options.js b/addons/knobs/src/components/types/Options.js index aa4d6c2e2c4..8580f72d7d4 100644 --- a/addons/knobs/src/components/types/Options.js +++ b/addons/knobs/src/components/types/Options.js @@ -6,6 +6,8 @@ import { styled } from '@storybook/theming'; import RadiosType from './Radio'; import CheckboxesType from './Checkboxes'; +// TODO: Apply the Storybook theme to react-select + const OptionsSelect = styled(ReactSelect)({ width: '100%', maxWidth: '300px', diff --git a/addons/knobs/src/components/types/Radio.js b/addons/knobs/src/components/types/Radio.js index 7b21d25a7dc..f4163967e2e 100644 --- a/addons/knobs/src/components/types/Radio.js +++ b/addons/knobs/src/components/types/Radio.js @@ -2,22 +2,23 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { styled } from '@storybook/theming'; -const flex = ({ isInline }) => { - if (isInline) { - return { - display: 'flex', - flexWrap: 'wrap', - alignItems: 'center', - }; - } - return null; -}; - -const RadiosWrapper = styled.div(flex); +const RadiosWrapper = styled.div(({ isInline }) => + isInline + ? { + display: 'flex', + flexWrap: 'wrap', + alignItems: 'center', + '> * + *': { + marginLeft: 10, + }, + } + : {} +); const RadioLabel = styled.label({ - fontSize: 11, - padding: '5px', + padding: '3px 0 3px 5px', + lineHeight: '18px', + display: 'inline-block', }); class RadiosType extends Component { diff --git a/docs/src/pages/configurations/theming/index.md b/docs/src/pages/configurations/theming/index.md index 745e7acbeab..b69383d2f59 100644 --- a/docs/src/pages/configurations/theming/index.md +++ b/docs/src/pages/configurations/theming/index.md @@ -3,7 +3,7 @@ id: 'theming' title: 'Theming Storybook' --- -Storybook's manager UI is theme-able! You can change theme variables using [addon-options](https://github.com/storybooks/storybook/tree/master/addons/options). +Storybook is theme-able! You can change theme variables using [addon-options](https://github.com/storybooks/storybook/tree/master/addons/options). ## Set a theme @@ -50,144 +50,196 @@ addParameters({ }); ``` -## Theme variables +## Create a theme quickstart -``` - -// Storybook-specific color palette -colorPrimary: primary color, // Storybook pink -colorSecondary: secondary color, // Blue - -// UI -appBg: background.app, -appBorderColor: color.border, -appBorderRadius: 4, +The easiest way to customize Storybook to generate a new theme using `create()`. This function includes shorthands for the most common theme variables. Here's how to use it. -// Fonts -fontBase: typography.fonts.base, -fontCode: typography.fonts.mono, +First create a new file in `.storybook` called `yourTheme.js`. -// Text colors -textColor: color.darkest, -textInverseColor: color.lightest, +Next paste the code below and tweak the variables. -// Toolbar default and active colors -barTextColor: color.mediumdark, -barSelectedColor: color.secondary, -barBgColor: color.lightest, - -// Form colors -inputBg: color.lightest, -inputBorder: color.border, -inputTextColor: color.darkest, -inputBorderRadius: 4, +``` +import { create } from '@storybook/theming'; -// Brand logo/text -brand: null, +export default create({ + // Is this a 'light' or 'dark' theme? + base: 'light', + // Color palette + colorPrimary: 'red', // primary color + colorSecondary: 'pink', // secondary color + // UI + appBg: 'papayawhip', + appContentBg: 'white', + appBorderColor: 'rgba(0,0,0,.1)', + appBorderRadius: 4, -``` + // Fonts + fontBase: '"Helvetica", Arial, sans-serif', + fontCode: 'Monaco, monospace', -### Deep theming components + // Text colors + textColor: '#FFFFFF', + textInverseColor: '#333333', -All options above are single key options, in other words, they are variables, and their usage is fixed. + // Toolbar default and active colors + barTextColor: '#999999', + barSelectedColor: 'blue', + barBg: 'white', -We will extend the theming ability in the future and possibly add more deep theming ability. -Right now we allow to deep theme: `stories nav panel`. Below are the varaiables that are used to deep theme `stories nav panel`. + // Form colors + inputBg: 'white', + inputBorder: 'rgba(0,0,0,.1)', + inputTextColor: '#333333', + inputBorderRadius: 4, -storiesNav: deep theme for `stories nav` - -``` -storiesNav: { - backgroundColor: 'aqua', -} + // Brand logo/text + brand: ``, +}); ``` -brand: deep theme for brand including `brand name` and `shortcuts` +Finally, import your theme into `.storybook/config` and add it to your Storybook parameters. ``` -brand: { - background: 'url("/path/to/logo.svg")', -} +import {yourTheme} from './yourTheme'; + +addParameters({ + options: { + theme: yourTheme, + }, +}); ``` -brandLink: deep theme for only `brand name` +## Addons and theme creation -``` -brandLink: { - border: 'none' -} -``` +Some addons require specific theme variables that a Storybook user must add. If you share your theme with the community make sure to support the official and other popular addons so your users have a consistent experience. -filter: deep theme for `stories filter section` +For example, the popular Actions addon uses [react-inspector](https://github.com/xyc/react-inspector/blob/master/src/styles/themes/chromeLight.js) which has themes of it's own. Supply additional theme variables to style it like so: ``` -filter: { - backgroundColor: 'red', +addonActionsTheme: { + ...chromeLight, + BASE_FONT_FAMILY: typography.fonts.mono, + BASE_BACKGROUND_COLOR: 'transparent', } ``` -treeHeader: deep theme for `tree header` +### Using the theme for addon authors + +For a native Storybook experience, we encourage addon authors to reuse the theme variables above. The theming engine relies on [emotion](https://emotion.sh/), a CSS-in-JS library. ``` -treeHeader: { - color: 'blue', -} +import { styled } from '@storybook/theming'; ``` -treeMenuHeader: deep theme for `tree menu header` of each menu +Use the theme variables in object notation: ``` -treeMenuHeader: { - color: 'aqua', -} +const Component = styled.div( + ({ theme }) => ({ + background: theme.background.app, + width: 0, + }), +); ``` -menuLink: deep theme for `menu link` of each story +Or with styled-components template literals: ``` -menuLink: { - color: 'black', -} +const Component = styled.div` + background: `${props => props.theme.background.app}` + width: 0; +`; ``` -activeMenuLink: deep theme for `active menu link` for the active story +### Advanced theming -``` -activeMenuLink: { - fontWeight: 'light', -} -``` +For further customization adjust theme variables manually. -treeArrow: deep theme for `tree arrow`. This accepts an object which receives `height`, `width`, `base` and `wrapper` +This is the master list: ``` -treeArrow: { - height: 5, - width: 5, - base: { - fontSize: '12px' - }, - wrapper: { - backgroundColor: 'white' - } -} -``` +base: 'light' | 'dark', +color: { + primary + secondary + tertiary + ancillary -The styles provided here support everything [emotion](https://emotion.sh/) does. So that included things like nested selectors! + orange + gold + green + seafoam + purple + ultraviolet -## Adding more theme variables for addons + lightest + lighter + light + mediumlight + medium + mediumdark + dark + darker + darkest -If addons have a need for specific theme variables, the user has to add them. -We advise addons to reuse the variables listed above as much as possible. + border -Addon actions uses [react-inspector](https://github.com/xyc/react-inspector/blob/master/src/styles/themes/chromeLight.js) which has themes of it's own. If you want to theme it (our themes do) you can add needs the following additional theme variables: + positive + negative + warning -``` -addonActionsTheme: { - ...chromeLight, - BASE_FONT_FAMILY: monoFonts.fontFamily, - BASE_BACKGROUND_COLOR: 'transparent', + defaultText + inverseText +} +background: { + app + content + hoverable + + positive + negative + warning +} +typography: { + fonts: { + base + mono + } + weight: { + regular + bold + black + } + size: { + s1 + s2 + s3 + m1 + m2 + m3 + l1 + l2 + l3 + code + } + input: { + border + background + color + borderRadius + }; + + layoutMargin + appBorderColor + appBorderRadius + + barTextColor + barSelectedColor + barBg + + brand } +TODO finish this, what's the best way to document? ``` diff --git a/examples/official-storybook/config.js b/examples/official-storybook/config.js index be51e97003b..fcf28e6631e 100644 --- a/examples/official-storybook/config.js +++ b/examples/official-storybook/config.js @@ -1,6 +1,6 @@ import React from 'react'; import { storiesOf, configure, addDecorator, addParameters } from '@storybook/react'; -import { Global, ThemeProvider, themes, createReset } from '@storybook/theming'; +import { Global, ThemeProvider, themes, createGlobal } from '@storybook/theming'; import { INITIAL_VIEWPORTS } from '@storybook/addon-viewport'; import { withCssResources } from '@storybook/addon-cssresources'; @@ -35,7 +35,7 @@ addDecorator(withNotes); addDecorator(fn => ( - + {fn()} )); diff --git a/examples/official-storybook/stories/__snapshots__/addon-a11y.stories.storyshot b/examples/official-storybook/stories/__snapshots__/addon-a11y.stories.storyshot index 4de68f0ce6c..b8fb54e56eb 100644 --- a/examples/official-storybook/stories/__snapshots__/addon-a11y.stories.storyshot +++ b/examples/official-storybook/stories/__snapshots__/addon-a11y.stories.storyshot @@ -97,8 +97,8 @@ exports[`Storyshots Addons|A11y/Form With label 1`] = ` .emotion-0 { min-width: 100px; - min-height: 32px; - margin-right: 16px; + font-weight: 700; + margin-right: 15px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; diff --git a/examples/official-storybook/stories/__snapshots__/addon-actions.stories.storyshot b/examples/official-storybook/stories/__snapshots__/addon-actions.stories.storyshot index 7c798fc6595..8b7cfba5f64 100644 --- a/examples/official-storybook/stories/__snapshots__/addon-actions.stories.storyshot +++ b/examples/official-storybook/stories/__snapshots__/addon-actions.stories.storyshot @@ -30,16 +30,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -48,38 +43,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -92,23 +55,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -150,16 +109,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -168,38 +122,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -212,23 +134,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -270,16 +188,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -288,38 +201,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -332,23 +213,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -390,16 +267,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -408,38 +280,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -452,23 +292,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -510,16 +346,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -528,38 +359,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -572,23 +371,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -630,16 +425,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -648,38 +438,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -692,23 +450,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -750,16 +504,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -768,38 +517,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -812,23 +529,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -870,16 +583,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -888,38 +596,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -932,23 +608,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -990,16 +662,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -1008,38 +675,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -1052,23 +687,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -1110,16 +741,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -1128,38 +754,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -1172,23 +766,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -1230,16 +820,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -1248,38 +833,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -1292,23 +845,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -1350,16 +899,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -1368,38 +912,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -1412,23 +924,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -1470,16 +978,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -1488,38 +991,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -1532,23 +1003,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -1590,16 +1057,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -1608,38 +1070,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -1652,23 +1082,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -1710,16 +1136,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -1728,38 +1149,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -1772,23 +1161,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -1830,16 +1215,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -1848,38 +1228,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -1892,23 +1240,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -1950,16 +1294,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -1968,38 +1307,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -2012,23 +1319,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -2070,54 +1373,17 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - overflow: visible; - z-index: 2; -} - -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + overflow: visible; + z-index: 2; } .emotion-0 svg { @@ -2132,23 +1398,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -2190,16 +1452,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -2208,38 +1465,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -2252,23 +1477,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -2310,16 +1531,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -2328,38 +1544,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -2372,23 +1556,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -2434,16 +1614,11 @@ exports[`Storyshots Addons|Actions Basic example 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -2452,38 +1627,6 @@ exports[`Storyshots Addons|Actions Basic example 1`] = ` z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -2496,23 +1639,19 @@ exports[`Storyshots Addons|Actions Basic example 1`] = ` } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -2557,16 +1696,11 @@ exports[`Storyshots Addons|Actions Circular Payload 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -2575,38 +1709,6 @@ exports[`Storyshots Addons|Actions Circular Payload 1`] = ` z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -2619,23 +1721,19 @@ exports[`Storyshots Addons|Actions Circular Payload 1`] = ` } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -2680,16 +1778,11 @@ exports[`Storyshots Addons|Actions Decorated action + config 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -2698,38 +1791,6 @@ exports[`Storyshots Addons|Actions Decorated action + config 1`] = ` z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -2742,23 +1803,19 @@ exports[`Storyshots Addons|Actions Decorated action + config 1`] = ` } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -2803,16 +1860,11 @@ exports[`Storyshots Addons|Actions Decorated action 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -2821,38 +1873,6 @@ exports[`Storyshots Addons|Actions Decorated action 1`] = ` z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -2865,23 +1885,19 @@ exports[`Storyshots Addons|Actions Decorated action 1`] = ` } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -2926,16 +1942,11 @@ exports[`Storyshots Addons|Actions Decorated actions + config 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -2944,38 +1955,6 @@ exports[`Storyshots Addons|Actions Decorated actions + config 1`] = ` z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -2988,23 +1967,19 @@ exports[`Storyshots Addons|Actions Decorated actions + config 1`] = ` } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -3049,16 +2024,11 @@ exports[`Storyshots Addons|Actions Decorated actions 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -3067,38 +2037,6 @@ exports[`Storyshots Addons|Actions Decorated actions 1`] = ` z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -3111,23 +2049,19 @@ exports[`Storyshots Addons|Actions Decorated actions 1`] = ` } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -3173,54 +2107,17 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; - color: #333333; - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; - border-radius: 4px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - overflow: visible; - z-index: 2; -} - -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); + background: #fafafa; + color: #333333; + box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + border-radius: 4px; + display: inline; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + overflow: visible; + z-index: 2; } .emotion-0 svg { @@ -3235,23 +2132,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -3293,16 +2186,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -3311,38 +2199,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -3355,23 +2211,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -3417,16 +2269,11 @@ exports[`Storyshots Addons|Actions Multiple actions + config 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -3435,38 +2282,6 @@ exports[`Storyshots Addons|Actions Multiple actions + config 1`] = ` z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -3479,23 +2294,19 @@ exports[`Storyshots Addons|Actions Multiple actions + config 1`] = ` } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -3540,16 +2351,11 @@ exports[`Storyshots Addons|Actions Multiple actions 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -3558,38 +2364,6 @@ exports[`Storyshots Addons|Actions Multiple actions 1`] = ` z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -3602,23 +2376,19 @@ exports[`Storyshots Addons|Actions Multiple actions 1`] = ` } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -3663,16 +2433,11 @@ exports[`Storyshots Addons|Actions Multiple actions as object 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -3681,38 +2446,6 @@ exports[`Storyshots Addons|Actions Multiple actions as object 1`] = ` z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -3725,23 +2458,19 @@ exports[`Storyshots Addons|Actions Multiple actions as object 1`] = ` } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -3786,16 +2515,11 @@ exports[`Storyshots Addons|Actions Multiple actions, object + config 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -3804,38 +2528,6 @@ exports[`Storyshots Addons|Actions Multiple actions, object + config 1`] = ` z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -3848,23 +2540,19 @@ exports[`Storyshots Addons|Actions Multiple actions, object + config 1`] = ` } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -3913,16 +2601,11 @@ Array [ font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -3931,38 +2614,6 @@ Array [ z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -3975,23 +2626,19 @@ Array [ } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -4037,16 +2684,11 @@ exports[`Storyshots Addons|Actions Reserved keyword as name 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -4055,38 +2697,6 @@ exports[`Storyshots Addons|Actions Reserved keyword as name 1`] = ` z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -4099,23 +2709,19 @@ exports[`Storyshots Addons|Actions Reserved keyword as name 1`] = ` } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -4160,16 +2766,11 @@ exports[`Storyshots Addons|Actions configureActionsDepth 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -4178,38 +2779,6 @@ exports[`Storyshots Addons|Actions configureActionsDepth 1`] = ` z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -4222,23 +2791,19 @@ exports[`Storyshots Addons|Actions configureActionsDepth 1`] = ` } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { @@ -4283,16 +2848,11 @@ exports[`Storyshots Addons|Actions.deprecated Decorated Action 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -4301,38 +2861,6 @@ exports[`Storyshots Addons|Actions.deprecated Decorated Action 1`] = ` z-index: 2; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 14px; @@ -4345,23 +2873,19 @@ exports[`Storyshots Addons|Actions.deprecated Decorated Action 1`] = ` } .emotion-0 svg path { - fill: #333333; + fill: currentColor; } .emotion-0:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-0:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-0:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-0:hover { diff --git a/examples/official-storybook/tests/__snapshots__/storyshots.test.js.snap b/examples/official-storybook/tests/__snapshots__/storyshots.test.js.snap index 40b864302a7..f3f40f8d412 100644 --- a/examples/official-storybook/tests/__snapshots__/storyshots.test.js.snap +++ b/examples/official-storybook/tests/__snapshots__/storyshots.test.js.snap @@ -10,6 +10,7 @@ exports[`Storyshots Basics|ActionBar manyItems 1`] = ` display: -webkit-flex; display: -ms-flexbox; display: flex; + background: #FFFFFF; } .emotion-0 { @@ -24,7 +25,8 @@ exports[`Storyshots Basics|ActionBar manyItems 1`] = ` -webkit-box-align: center; -ms-flex-align: center; align-items: center; - color: #666666; + color: #333333; + background: #FFFFFF; font-size: 12px; line-height: 16px; font-weight: 700; @@ -57,6 +59,7 @@ exports[`Storyshots Basics|ActionBar manyItems 1`] = ` display: -webkit-flex; display: -ms-flexbox; display: flex; + background: #FFFFFF; } .emotion-0 { @@ -71,7 +74,8 @@ exports[`Storyshots Basics|ActionBar manyItems 1`] = ` -webkit-box-align: center; -ms-flex-align: center; align-items: center; - color: #666666; + color: #333333; + background: #FFFFFF; font-size: 12px; line-height: 16px; font-weight: 700; @@ -132,6 +136,7 @@ exports[`Storyshots Basics|ActionBar singleItem 1`] = ` display: -webkit-flex; display: -ms-flexbox; display: flex; + background: #FFFFFF; } .emotion-0 { @@ -146,7 +151,8 @@ exports[`Storyshots Basics|ActionBar singleItem 1`] = ` -webkit-box-align: center; -ms-flex-align: center; align-items: center; - color: #666666; + color: #333333; + background: #FFFFFF; font-size: 12px; line-height: 16px; font-weight: 700; @@ -179,6 +185,7 @@ exports[`Storyshots Basics|ActionBar singleItem 1`] = ` display: -webkit-flex; display: -ms-flexbox; display: flex; + background: #FFFFFF; } .emotion-0 { @@ -193,7 +200,8 @@ exports[`Storyshots Basics|ActionBar singleItem 1`] = ` -webkit-box-align: center; -ms-flex-align: center; align-items: center; - color: #666666; + color: #333333; + background: #FFFFFF; font-size: 12px; line-height: 16px; font-weight: 700; @@ -232,6 +240,50 @@ exports[`Storyshots Basics|ActionBar singleItem 1`] = ` `; +exports[`Storyshots Basics|Brand/StorybookLogo normal 1`] = ` + + + + + + + + + + + + + +`; + exports[`Storyshots Basics|DocumentFormatting sampleDocument 1`] = ` .emotion-0 { font-size: 14px; @@ -1643,7 +1695,7 @@ exports[`Storyshots Basics|Placeholder singleChild 1`] = ` .emotion-1 { padding: 30px; text-align: center; - color: #666666; + color: #333333; font-size: 13px; } @@ -1654,7 +1706,7 @@ exports[`Storyshots Basics|Placeholder singleChild 1`] = ` .emotion-1 { padding: 30px; text-align: center; - color: #666666; + color: #333333; font-size: 13px; } @@ -1674,10 +1726,10 @@ exports[`Storyshots Basics|Placeholder singleChild 1`] = ` `; exports[`Storyshots Basics|Placeholder twoChildren 1`] = ` -.emotion-2 { +.emotion-4 { padding: 30px; text-align: center; - color: #666666; + color: #333333; font-size: 13px; } @@ -1686,9 +1738,57 @@ exports[`Storyshots Basics|Placeholder twoChildren 1`] = ` } .emotion-2 { + display: inline-block; + -webkit-transition: all 150ms ease-out; + transition: all 150ms ease-out; + -webkit-text-decoration: none; + text-decoration: none; + color: #1EA7FD; +} + +.emotion-2 svg path { + fill: #1EA7FD; +} + +.emotion-2:hover, +.emotion-2:focus { + cursor: pointer; + -webkit-transform: translate3d(0,-1px,0); + -ms-transform: translate3d(0,-1px,0); + transform: translate3d(0,-1px,0); + color: #0297f5; +} + +.emotion-2:hover svg path, +.emotion-2:focus svg path { + fill: #0297f5; +} + +.emotion-2:active { + -webkit-transform: translate3d(0,0,0); + -ms-transform: translate3d(0,0,0); + transform: translate3d(0,0,0); + color: #028ee6; +} + +.emotion-2:active svg path { + fill: #028ee6; +} + +.emotion-2 svg { + display: inline-block; + height: 1em; + width: 1em; + vertical-align: text-top; + position: relative; + bottom: -0.125em; + margin-right: 0.4em; +} + +.emotion-4 { padding: 30px; text-align: center; - color: #666666; + color: #333333; font-size: 13px; } @@ -1696,8 +1796,56 @@ exports[`Storyshots Basics|Placeholder twoChildren 1`] = ` font-weight: 700; } +.emotion-2 { + display: inline-block; + -webkit-transition: all 150ms ease-out; + transition: all 150ms ease-out; + -webkit-text-decoration: none; + text-decoration: none; + color: #1EA7FD; +} + +.emotion-2 svg path { + fill: #1EA7FD; +} + +.emotion-2:hover, +.emotion-2:focus { + cursor: pointer; + -webkit-transform: translate3d(0,-1px,0); + -ms-transform: translate3d(0,-1px,0); + transform: translate3d(0,-1px,0); + color: #0297f5; +} + +.emotion-2:hover svg path, +.emotion-2:focus svg path { + fill: #0297f5; +} + +.emotion-2:active { + -webkit-transform: translate3d(0,0,0); + -ms-transform: translate3d(0,0,0); + transform: translate3d(0,0,0); + color: #028ee6; +} + +.emotion-2:active svg path { + fill: #028ee6; +} + +.emotion-2 svg { + display: inline-block; + height: 1em; + width: 1em; + vertical-align: text-top; + position: relative; + bottom: -0.125em; + margin-right: 0.4em; +} +
The second normal weight. Here's a - link + + link +
@@ -1746,43 +1899,6 @@ exports[`Storyshots Core|Events Force re-render 1`] = ` font-size: 13px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); } .emotion-0 svg { @@ -1796,6 +1912,10 @@ exports[`Storyshots Core|Events Force re-render 1`] = ` pointer-events: none; } +.emotion-0 svg path { + fill: currentColor; +} + .emotion-0 { border: 0; border-radius: 3em; @@ -1824,43 +1944,6 @@ exports[`Storyshots Core|Events Force re-render 1`] = ` font-size: 13px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); } .emotion-0 svg { @@ -1874,6 +1957,10 @@ exports[`Storyshots Core|Events Force re-render 1`] = ` pointer-events: none; } +.emotion-0 svg path { + fill: currentColor; +} +
- - - - - -
diff --git a/lib/components/src/Button/__snapshots__/Button.stories.storyshot b/lib/components/src/Button/__snapshots__/Button.stories.storyshot index b7f437aef66..7c7590fff4b 100644 --- a/lib/components/src/Button/__snapshots__/Button.stories.storyshot +++ b/lib/components/src/Button/__snapshots__/Button.stories.storyshot @@ -1,7 +1,7 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`Storyshots Basics|Button all buttons 1`] = ` -.emotion-29 { +.emotion-14 { shape-rendering: inherit; -webkit-transform: translate3d(0,0,0); -ms-transform: translate3d(0,0,0); @@ -9,7 +9,7 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` display: block; } -.emotion-28 { +.emotion-13 { fill: currentColor; } @@ -41,16 +41,11 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; - display: inline; border-radius: 4px; + display: inline; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -59,38 +54,6 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` z-index: 2; } -.emotion-3:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-3:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-3:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-3 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-3 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-3 svg { display: inline-block; height: 14px; @@ -103,23 +66,19 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` } .emotion-3 svg path { - fill: #333333; + fill: currentColor; } .emotion-3:hover { - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + background: #f2f2f2; } .emotion-3:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-3:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-3:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-3:hover { @@ -156,47 +115,10 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` font-size: 13px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); background: #FF4785; color: #FFFFFF; } -.emotion-0:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-0:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-0:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-0 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-0 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-0 svg { display: inline-block; height: 16px; @@ -209,7 +131,7 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` } .emotion-0 svg path { - fill: #FFFFFF; + fill: currentColor; } .emotion-0:hover { @@ -217,7 +139,7 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` } .emotion-0:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + box-shadow: rgba(0,0,0,0.1) 0 0 0 3em inset; } .emotion-0:focus { @@ -256,47 +178,10 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` font-size: 13px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); background: #1EA7FD; color: #FFFFFF; } -.emotion-1:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-1:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-1:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-1 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-1 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-1 svg { display: inline-block; height: 16px; @@ -309,7 +194,7 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` } .emotion-1 svg path { - fill: #FFFFFF; + fill: currentColor; } .emotion-1:hover { @@ -317,7 +202,7 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` } .emotion-1:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + box-shadow: rgba(0,0,0,0.1) 0 0 0 3em inset; } .emotion-1:focus { @@ -356,46 +241,10 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` font-size: 13px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; -} - -.emotion-2:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-2:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-2:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-2 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-2 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); + border-radius: 4px; } .emotion-2 svg { @@ -410,23 +259,20 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` } .emotion-2 svg path { - fill: #333333; + fill: currentColor; } .emotion-2:hover { + background: #f2f2f2; box-shadow: rgba(0,0,0,.2) 0 2px 6px 0,rgba(0,0,0,.1) 0 0 0 1px inset; } .emotion-2:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + background: #FFFFFF; } .emotion-2:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; -} - -.emotion-2:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } .emotion-4 { @@ -457,48 +303,11 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` font-size: 13px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - box-shadow: #DDDDDD 0 0 0 1px inset; - color: #666666; + box-shadow: rgba(51,51,51,0.2) 0 0 0 1px inset; + color: rgba(51,51,51,0.7); background: transparent; } -.emotion-4:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-4:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-4:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-4 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-4 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-4 svg { display: inline-block; height: 16px; @@ -511,17 +320,16 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` } .emotion-4 svg path { - fill: #666666; + fill: currentColor; } .emotion-4:hover { - box-shadow: #999999 0 0 0 1px inset; + box-shadow: rgba(51,51,51,0.5) 0 0 0 1px inset; } .emotion-4:active { - background: #DDDDDD; - box-shadow: #DDDDDD 0 0 0 1px inset; - color: #333333; + box-shadow: rgba(51,51,51,0.5) 0 0 0 2px inset; + color: #333; } .emotion-5 { @@ -552,52 +360,15 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` font-size: 13px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); background: #FF4785; color: #FFFFFF; - box-shadow: #DDDDDD 0 0 0 1px inset; - color: #666666; + box-shadow: rgba(51,51,51,0.2) 0 0 0 1px inset; + color: rgba(51,51,51,0.7); background: transparent; box-shadow: #FF4785 0 0 0 1px inset; color: #FF4785; } -.emotion-5:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-5:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-5:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-5 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-5 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-5 svg { display: inline-block; height: 16px; @@ -610,7 +381,7 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` } .emotion-5 svg path { - fill: #FFFFFF; + fill: currentColor; } .emotion-5:hover { @@ -618,7 +389,7 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` } .emotion-5:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + box-shadow: rgba(0,0,0,0.1) 0 0 0 3em inset; } .emotion-5:focus { @@ -629,18 +400,13 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` box-shadow: rgba(255,71,133,0.2) 0 8px 18px 0px; } -.emotion-5 svg path { - fill: #666666; -} - .emotion-5:hover { - box-shadow: #999999 0 0 0 1px inset; + box-shadow: rgba(51,51,51,0.5) 0 0 0 1px inset; } .emotion-5:active { - background: #DDDDDD; - box-shadow: #DDDDDD 0 0 0 1px inset; - color: #333333; + box-shadow: rgba(51,51,51,0.5) 0 0 0 2px inset; + color: #333; } .emotion-5 svg path { @@ -658,16 +424,12 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` color: #FFFFFF; } -.emotion-5:active svg path { - fill: #FFFFFF; -} - .emotion-5:focus { - box-shadow: #FF4785 0 0 0 1px inset,rgba(255,71,133,0.4) 0 1px 9px 2px; + box-shadow: #FF4785 0 0 0 1px inset, rgba(255,71,133,0.4) 0 1px 9px 2px; } .emotion-5:focus:hover { - box-shadow: #FF4785 0 0 0 1px inset,rgba(255,71,133,0.2) 0 8px 18px 0px; + box-shadow: #FF4785 0 0 0 1px inset, rgba(255,71,133,0.2) 0 8px 18px 0px; } .emotion-6 { @@ -698,52 +460,15 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` font-size: 13px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); background: #1EA7FD; color: #FFFFFF; - box-shadow: #DDDDDD 0 0 0 1px inset; - color: #666666; + box-shadow: rgba(51,51,51,0.2) 0 0 0 1px inset; + color: rgba(51,51,51,0.7); background: transparent; box-shadow: #1EA7FD 0 0 0 1px inset; color: #1EA7FD; } -.emotion-6:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-6:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-6:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-6 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-6 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-6 svg { display: inline-block; height: 16px; @@ -756,7 +481,7 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` } .emotion-6 svg path { - fill: #FFFFFF; + fill: currentColor; } .emotion-6:hover { @@ -764,7 +489,7 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` } .emotion-6:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + box-shadow: rgba(0,0,0,0.1) 0 0 0 3em inset; } .emotion-6:focus { @@ -775,22 +500,13 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px; } -.emotion-6 svg path { - fill: #666666; -} - .emotion-6:hover { - box-shadow: #999999 0 0 0 1px inset; + box-shadow: rgba(51,51,51,0.5) 0 0 0 1px inset; } .emotion-6:active { - background: #DDDDDD; - box-shadow: #DDDDDD 0 0 0 1px inset; - color: #333333; -} - -.emotion-6 svg path { - fill: #1EA7FD; + box-shadow: rgba(51,51,51,0.5) 0 0 0 2px inset; + color: #333; } .emotion-6:hover { @@ -804,16 +520,12 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` color: #FFFFFF; } -.emotion-6:active svg path { - fill: #FFFFFF; -} - .emotion-6:focus { - box-shadow: #1EA7FD 0 0 0 1px inset,rgba(30,167,253,0.4) 0 1px 9px 2px; + box-shadow: #1EA7FD 0 0 0 1px inset, rgba(30,167,253,0.4) 0 1px 9px 2px; } .emotion-6:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset,rgba(30,167,253,0.2) 0 8px 18px 0px; + box-shadow: #1EA7FD 0 0 0 1px inset, rgba(30,167,253,0.2) 0 8px 18px 0px; } .emotion-7 { @@ -844,49 +556,12 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` font-size: 13px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); cursor: not-allowed !important; - opacity: .5; + opacity: 0.5; background: #FF4785; color: #FFFFFF; } -.emotion-7:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-7:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-7:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-7 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-7 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - .emotion-7 svg { display: inline-block; height: 16px; @@ -898,22 +573,22 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` pointer-events: none; } +.emotion-7 svg path { + fill: currentColor; +} + .emotion-7:hover { -webkit-transform: none; -ms-transform: none; transform: none; } -.emotion-7 svg path { - fill: #FFFFFF; -} - .emotion-7:hover { background: #ff2d74; } .emotion-7:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; + box-shadow: rgba(0,0,0,0.1) 0 0 0 3em inset; } .emotion-7:focus { @@ -924,13 +599,13 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` box-shadow: rgba(255,71,133,0.2) 0 8px 18px 0px; } -.emotion-10 { +.emotion-8 { border: 0; border-radius: 3em; cursor: pointer; display: inline-block; overflow: hidden; - padding: 13px 20px; + padding: 10px 16px; position: relative; text-align: center; -webkit-text-decoration: none; @@ -949,349 +624,45 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` opacity: 1; margin: 0; background: transparent; - font-size: 13px; + font-size: 12px; font-weight: 700; line-height: 1; - cursor: progress !important; - opacity: .7; background: #FF4785; color: #FFFFFF; } -.emotion-10 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-10 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - -.emotion-10 svg { +.emotion-8 svg { display: inline-block; - height: 16px; - width: 16px; + height: 14px; + width: 14px; vertical-align: top; - margin-right: 6px; - margin-top: -2px; - margin-bottom: -2px; + margin-right: 4px; + margin-top: -1px; + margin-bottom: -1px; pointer-events: none; } -.emotion-10 [role="progressbar"] { - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transform: translate3d(0,-50%,0); - -ms-transform: translate3d(0,-50%,0); - transform: translate3d(0,-50%,0); - opacity: 1; +.emotion-8 svg path { + fill: currentColor; } -.emotion-10 > span { - -webkit-transform: scale3d(0,0,1) translate3d(0,-100%,0); - -ms-transform: scale3d(0,0,1) translate3d(0,-100%,0); - transform: scale3d(0,0,1) translate3d(0,-100%,0); - opacity: 0; +.emotion-8:hover { + background: #ff2d74; } -.emotion-10:hover { - -webkit-transform: none; - -ms-transform: none; - transform: none; +.emotion-8:active { + box-shadow: rgba(0,0,0,0.1) 0 0 0 3em inset; } -.emotion-10 svg path { - fill: #FFFFFF; +.emotion-8:focus { + box-shadow: rgba(255,71,133,0.4) 0 1px 9px 2px; } -.emotion-8 { - display: inline-block; - vertical-align: top; +.emotion-8:focus:hover { + box-shadow: rgba(255,71,133,0.2) 0 8px 18px 0px; } .emotion-9 { - position: absolute; - top: 50%; - left: 0; - right: 0; - opacity: 0; -} - -.emotion-13 { - border: 0; - border-radius: 3em; - cursor: pointer; - display: inline-block; - overflow: hidden; - padding: 13px 20px; - position: relative; - text-align: center; - -webkit-text-decoration: none; - text-decoration: none; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - vertical-align: top; - white-space: nowrap; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - opacity: 1; - margin: 0; - background: transparent; - font-size: 13px; - font-weight: 700; - line-height: 1; - cursor: progress !important; - opacity: .7; - background: #1EA7FD; - color: #FFFFFF; -} - -.emotion-13 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-13 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - -.emotion-13 svg { - display: inline-block; - height: 16px; - width: 16px; - vertical-align: top; - margin-right: 6px; - margin-top: -2px; - margin-bottom: -2px; - pointer-events: none; -} - -.emotion-13 [role="progressbar"] { - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transform: translate3d(0,-50%,0); - -ms-transform: translate3d(0,-50%,0); - transform: translate3d(0,-50%,0); - opacity: 1; -} - -.emotion-13 > span { - -webkit-transform: scale3d(0,0,1) translate3d(0,-100%,0); - -ms-transform: scale3d(0,0,1) translate3d(0,-100%,0); - transform: scale3d(0,0,1) translate3d(0,-100%,0); - opacity: 0; -} - -.emotion-13:hover { - -webkit-transform: none; - -ms-transform: none; - transform: none; -} - -.emotion-13 svg path { - fill: #FFFFFF; -} - -.emotion-16 { - border: 0; - border-radius: 3em; - cursor: pointer; - display: inline-block; - overflow: hidden; - padding: 13px 20px; - position: relative; - text-align: center; - -webkit-text-decoration: none; - text-decoration: none; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - vertical-align: top; - white-space: nowrap; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - opacity: 1; - margin: 0; - background: transparent; - font-size: 13px; - font-weight: 700; - line-height: 1; - cursor: progress !important; - opacity: .7; - background: #FAFBFC; - color: #333333; - box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; -} - -.emotion-16 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-16 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - -.emotion-16 svg { - display: inline-block; - height: 16px; - width: 16px; - vertical-align: top; - margin-right: 6px; - margin-top: -2px; - margin-bottom: -2px; - pointer-events: none; -} - -.emotion-16 [role="progressbar"] { - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transform: translate3d(0,-50%,0); - -ms-transform: translate3d(0,-50%,0); - transform: translate3d(0,-50%,0); - opacity: 1; -} - -.emotion-16 > span { - -webkit-transform: scale3d(0,0,1) translate3d(0,-100%,0); - -ms-transform: scale3d(0,0,1) translate3d(0,-100%,0); - transform: scale3d(0,0,1) translate3d(0,-100%,0); - opacity: 0; -} - -.emotion-16:hover { - -webkit-transform: none; - -ms-transform: none; - transform: none; -} - -.emotion-16 svg path { - fill: #333333; -} - -.emotion-19 { - border: 0; - border-radius: 3em; - cursor: pointer; - display: inline-block; - overflow: hidden; - padding: 13px 20px; - position: relative; - text-align: center; - -webkit-text-decoration: none; - text-decoration: none; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - vertical-align: top; - white-space: nowrap; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - opacity: 1; - margin: 0; - background: transparent; - font-size: 13px; - font-weight: 700; - line-height: 1; - cursor: progress !important; - opacity: .7; - box-shadow: #DDDDDD 0 0 0 1px inset; - color: #666666; - background: transparent; -} - -.emotion-19 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-19 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - -.emotion-19 svg { - display: inline-block; - height: 16px; - width: 16px; - vertical-align: top; - margin-right: 6px; - margin-top: -2px; - margin-bottom: -2px; - pointer-events: none; -} - -.emotion-19 [role="progressbar"] { - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transform: translate3d(0,-50%,0); - -ms-transform: translate3d(0,-50%,0); - transform: translate3d(0,-50%,0); - opacity: 1; -} - -.emotion-19 > span { - -webkit-transform: scale3d(0,0,1) translate3d(0,-100%,0); - -ms-transform: scale3d(0,0,1) translate3d(0,-100%,0); - transform: scale3d(0,0,1) translate3d(0,-100%,0); - opacity: 0; -} - -.emotion-19:hover { - -webkit-transform: none; - -ms-transform: none; - transform: none; -} - -.emotion-19 svg path { - fill: #666666; -} - -.emotion-23 { border: 0; border-radius: 3em; cursor: pointer; @@ -1319,148 +690,11 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FF4785; - color: #FFFFFF; -} - -.emotion-23:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-23:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-23:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-23 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-23 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - -.emotion-23 svg { - display: inline-block; - height: 14px; - width: 14px; - vertical-align: top; - margin-right: 4px; - margin-top: -1px; - margin-bottom: -1px; - pointer-events: none; -} - -.emotion-23 svg path { - fill: #FFFFFF; -} - -.emotion-23:hover { - background: #ff2d74; -} - -.emotion-23:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; -} - -.emotion-23:focus { - box-shadow: rgba(255,71,133,0.4) 0 1px 9px 2px; -} - -.emotion-23:focus:hover { - box-shadow: rgba(255,71,133,0.2) 0 8px 18px 0px; -} - -.emotion-24 { - border: 0; - border-radius: 3em; - cursor: pointer; - display: inline-block; - overflow: hidden; - padding: 10px 16px; - position: relative; - text-align: center; - -webkit-text-decoration: none; - text-decoration: none; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - vertical-align: top; - white-space: nowrap; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - opacity: 1; - margin: 0; - background: transparent; - font-size: 12px; - font-weight: 700; - line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); background: #1EA7FD; color: #FFFFFF; } -.emotion-24:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-24:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-24:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-24 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-24 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - -.emotion-24 svg { +.emotion-9 svg { display: inline-block; height: 14px; width: 14px; @@ -1471,27 +705,27 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` pointer-events: none; } -.emotion-24 svg path { - fill: #FFFFFF; +.emotion-9 svg path { + fill: currentColor; } -.emotion-24:hover { +.emotion-9:hover { background: #059dfd; } -.emotion-24:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; +.emotion-9:active { + box-shadow: rgba(0,0,0,0.1) 0 0 0 3em inset; } -.emotion-24:focus { +.emotion-9:focus { box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px; } -.emotion-24:focus:hover { +.emotion-9:focus:hover { box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px; } -.emotion-25 { +.emotion-10 { border: 0; border-radius: 3em; cursor: pointer; @@ -1519,49 +753,13 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - background: #FAFBFC; + background: #fafafa; color: #333333; box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; + border-radius: 4px; } -.emotion-25:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-25:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-25:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-25 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-25 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - -.emotion-25 svg { +.emotion-10 svg { display: inline-block; height: 14px; width: 14px; @@ -1572,27 +770,24 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` pointer-events: none; } -.emotion-25 svg path { - fill: #333333; +.emotion-10 svg path { + fill: currentColor; } -.emotion-25:hover { +.emotion-10:hover { + background: #f2f2f2; box-shadow: rgba(0,0,0,.2) 0 2px 6px 0,rgba(0,0,0,.1) 0 0 0 1px inset; } -.emotion-25:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; -} - -.emotion-25:focus { - box-shadow: #1EA7FD 0 0 0 1px inset; +.emotion-10:active { + background: #FFFFFF; } -.emotion-25:focus:hover { - box-shadow: #1EA7FD 0 0 0 1px inset; +.emotion-10:focus { + box-shadow: rgba(30,167,253,0.4) 0 0 0 1px inset; } -.emotion-26 { +.emotion-11 { border: 0; border-radius: 3em; cursor: pointer; @@ -1620,49 +815,12 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - box-shadow: #DDDDDD 0 0 0 1px inset; - color: #666666; + box-shadow: rgba(51,51,51,0.2) 0 0 0 1px inset; + color: rgba(51,51,51,0.7); background: transparent; } -.emotion-26:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-26:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-26:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-26 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-26 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - -.emotion-26 svg { +.emotion-11 svg { display: inline-block; height: 14px; width: 14px; @@ -1673,21 +831,20 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` pointer-events: none; } -.emotion-26 svg path { - fill: #666666; +.emotion-11 svg path { + fill: currentColor; } -.emotion-26:hover { - box-shadow: #999999 0 0 0 1px inset; +.emotion-11:hover { + box-shadow: rgba(51,51,51,0.5) 0 0 0 1px inset; } -.emotion-26:active { - background: #DDDDDD; - box-shadow: #DDDDDD 0 0 0 1px inset; - color: #333333; +.emotion-11:active { + box-shadow: rgba(51,51,51,0.5) 0 0 0 2px inset; + color: #333; } -.emotion-27 { +.emotion-12 { border: 0; border-radius: 3em; cursor: pointer; @@ -1715,50 +872,13 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); cursor: not-allowed !important; - opacity: .5; + opacity: 0.5; background: #FF4785; color: #FFFFFF; } -.emotion-27:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-27:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-27:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-27 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-27 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - -.emotion-27 svg { +.emotion-12 svg { display: inline-block; height: 14px; width: 14px; @@ -1769,33 +889,33 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` pointer-events: none; } -.emotion-27:hover { +.emotion-12 svg path { + fill: currentColor; +} + +.emotion-12:hover { -webkit-transform: none; -ms-transform: none; transform: none; } -.emotion-27 svg path { - fill: #FFFFFF; -} - -.emotion-27:hover { +.emotion-12:hover { background: #ff2d74; } -.emotion-27:active { - box-shadow: rgba(0,0,0,.1) 0 0 0 3em inset; +.emotion-12:active { + box-shadow: rgba(0,0,0,0.1) 0 0 0 3em inset; } -.emotion-27:focus { +.emotion-12:focus { box-shadow: rgba(255,71,133,0.4) 0 1px 9px 2px; } -.emotion-27:focus:hover { +.emotion-12:focus:hover { box-shadow: rgba(255,71,133,0.2) 0 8px 18px 0px; } -.emotion-30 { +.emotion-15 { border: 0; border-radius: 3em; cursor: pointer; @@ -1823,50 +943,13 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` font-size: 12px; font-weight: 700; line-height: 1; - -webkit-transition: all 150ms ease-out; - transition: all 150ms ease-out; - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); padding: 7px; - box-shadow: #DDDDDD 0 0 0 1px inset; - color: #666666; + box-shadow: rgba(51,51,51,0.2) 0 0 0 1px inset; + color: rgba(51,51,51,0.7); background: transparent; } -.emotion-30:hover { - -webkit-transform: translate3d(0,-2px,0); - -ms-transform: translate3d(0,-2px,0); - transform: translate3d(0,-2px,0); -} - -.emotion-30:active { - -webkit-transform: translate3d(0,0,0); - -ms-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); -} - -.emotion-30:hover { - box-shadow: rgba(0,0,0,.2) 0 2px 6px 0; -} - -.emotion-30 > span { - -webkit-transform: scale3d(1,1,1) translate3d(0,0,0); - -ms-transform: scale3d(1,1,1) translate3d(0,0,0); - transform: scale3d(1,1,1) translate3d(0,0,0); - -webkit-transition: -webkit-transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - -webkit-transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - transition: transform 700ms cubic-bezier(0.175,0.885,0.335,1.05); - opacity: 1; -} - -.emotion-30 [role="progressbar"] { - -webkit-transform: translate3d(0,100%,0); - -ms-transform: translate3d(0,100%,0); - transform: translate3d(0,100%,0); -} - -.emotion-30 svg { +.emotion-15 svg { display: inline-block; height: 14px; width: 14px; @@ -1877,23 +960,22 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` pointer-events: none; } -.emotion-30 svg { - display: block; - margin: 0; +.emotion-15 svg path { + fill: currentColor; } -.emotion-30 svg path { - fill: #666666; +.emotion-15 svg { + display: block; + margin: 0; } -.emotion-30:hover { - box-shadow: #999999 0 0 0 1px inset; +.emotion-15:hover { + box-shadow: rgba(51,51,51,0.5) 0 0 0 1px inset; } -.emotion-30:active { - background: #DDDDDD; - box-shadow: #DDDDDD 0 0 0 1px inset; - color: #333333; +.emotion-15:active { + box-shadow: rgba(51,51,51,0.5) 0 0 0 2px inset; + color: #333; }
@@ -1930,7 +1012,7 @@ exports[`Storyshots Basics|Button all buttons 1`] = ` - - - - -
-