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;
+}
+
@@ -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;
+}
+