Skip to content

Commit

Permalink
Merge pull request #5998 from malykhinvi/sb-5785
Browse files Browse the repository at this point in the history
Fix #5785 - welcome component in dark theme
  • Loading branch information
shilman authored Mar 11, 2019
2 parents 8bc1fe6 + 3eb19ca commit 8e68e14
Show file tree
Hide file tree
Showing 23 changed files with 141 additions and 141 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ exports[`Storyshots Welcome to Storybook 1`] = `
<article
style={
Object {
"backgroundColor": "#fff",
"fontFamily": "\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif",
"lineHeight": 1.4,
"margin": 15,
"maxWidth": 600,
"padding": 15,
}
}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ exports[`Storyshots Welcome to Storybook 1`] = `
<article
style={
Object {
"backgroundColor": "#fff",
"fontFamily": "\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif",
"lineHeight": 1.4,
"margin": 15,
"maxWidth": 600,
"padding": 15,
}
}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ exports[`Storyshots Welcome to Storybook 1`] = `
<article
style={
Object {
"backgroundColor": "#fff",
"fontFamily": "\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif",
"lineHeight": 1.4,
"margin": 15,
"maxWidth": 600,
"padding": 15,
}
}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ exports[`Storyshots Welcome to Storybook 1`] = `
<article
style={
Object {
"backgroundColor": "#fff",
"fontFamily": "\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif",
"lineHeight": 1.4,
"margin": 15,
"maxWidth": 600,
"padding": 15,
}
}
>
Expand Down
4 changes: 2 additions & 2 deletions app/angular/src/demo/welcome.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ import { Component, Output, EventEmitter } from '@angular/core';
styles: [
`
main {
margin: 15px;
max-width: 600;
padding: 15px;
line-height: 1.4;
fontfamily: 'Helvetica Neue', Helvetica, 'Segoe UI', Arial, freesans, sans-serif;
background-color: #ffffff;
}
.note {
Expand Down
4 changes: 2 additions & 2 deletions app/react/src/demo/Welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ const Main = props => (
<article
{...props}
style={{
margin: 15,
maxWidth: 600,
padding: 15,
lineHeight: 1.4,
fontFamily: '"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif',
backgroundColor: '#fff',
}}
/>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`Storyshots Welcome to Storybook 1`] = `
<article
style="margin:15px;max-width:600px;line-height:1.4;font-family:\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif"
style="padding:15px;line-height:1.4;font-family:\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif;background-color:#fff"
>
<h1>
Welcome to storybook
Expand Down
4 changes: 2 additions & 2 deletions examples/ember-cli/app/styles/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ a {
}

.main {
margin: 15px;
max-width: 600;
padding: 15px;
line-height: 1.4;
font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
background-color: #ffffff;
}

.logo {
Expand Down
4 changes: 2 additions & 2 deletions examples/html-kitchen-sink/stories/welcome.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.main {
margin: 15px;
max-width: 600px;
padding: 15px;
line-height: 1.4;
font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
background-color: #ffffff;
}

.logo {
Expand Down
4 changes: 2 additions & 2 deletions examples/mithril-kitchen-sink/src/Welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ const Main = {
view: vnode => (
<article
style={{
margin: '15px',
maxWidth: '600px',
padding: '15px',
lineHeight: 1.4,
fontFamily: '"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif',
backgroundColor: '#ffffff',
}}
>
{vnode.children}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ exports[`Storyshots Other|Demo/Button with text 1`] = `

exports[`Storyshots Other|Demo/Welcome to Storybook 1`] = `
<article
style="margin:15px;max-width:600px;line-height:1.4;font-family:\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif"
style="padding:15px;line-height:1.4;font-family:\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif;background-color:#fff"
>
<h1>
Welcome to storybook
Expand Down
4 changes: 2 additions & 2 deletions examples/preact-kitchen-sink/src/Welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ const Main = props => (
<article
{...props}
style={{
margin: 15,
maxWidth: 600,
padding: 15,
lineHeight: 1.4,
fontFamily: '"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif',
backgroundColor: '#ffffff',
}}
/>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ exports[`Storyshots Welcome to Storybook 1`] = `
<article
style={
Object {
"backgroundColor": "#ffffff",
"fontFamily": "\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif",
"lineHeight": 1.4,
"margin": 15,
"maxWidth": 600,
"padding": 15,
}
}
>
Expand Down
4 changes: 2 additions & 2 deletions examples/riot-kitchen-sink/src/stories/Welcome.tag
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@

<style>
.main {
margin: 15px;
max-width: 600;
padding: 15px;
line-height: 1.4;
font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
background-color: #ffffff;
}

.logo {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ exports[`Storyshots Welcome Welcome 1`] = `
class="storybook-snapshot-container"
>
<div
class="main svelte-1unvhkg"
class="main svelte-5n9a95"
>
<h1>
Welcome to Storybook for Svelte
Expand All @@ -123,7 +123,7 @@ exports[`Storyshots Welcome Welcome 1`] = `

We've added some basic stories inside the
<code
class="code svelte-1unvhkg"
class="code svelte-5n9a95"
>
src/stories
</code>
Expand All @@ -141,7 +141,7 @@ exports[`Storyshots Welcome Welcome 1`] = `


<h1
class="logo svelte-1unvhkg"
class="logo svelte-5n9a95"
>
Svelte
</h1>
Expand All @@ -157,14 +157,14 @@ exports[`Storyshots Welcome Welcome 1`] = `

(Try editing the
<code
class="code svelte-1unvhkg"
class="code svelte-5n9a95"
>
Button
</code>
component
located at
<code
class="code svelte-1unvhkg"
class="code svelte-5n9a95"
>
src/stories/views/Welcome.svelte
</code>
Expand All @@ -181,7 +181,7 @@ exports[`Storyshots Welcome Welcome 1`] = `
Have a look at the

<a
class="link svelte-1unvhkg"
class="link svelte-5n9a95"
href="https://storybook.js.org/basics/writing-stories"
target="_blank"
>
Expand All @@ -194,7 +194,7 @@ exports[`Storyshots Welcome Welcome 1`] = `


<p
class="note svelte-1unvhkg"
class="note svelte-5n9a95"
>
<b>
NOTE:
Expand All @@ -206,7 +206,7 @@ exports[`Storyshots Welcome Welcome 1`] = `
Have a look at the

<code
class="code svelte-1unvhkg"
class="code svelte-5n9a95"
>
.storybook/webpack.config.js
</code>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
@import url('https://fonts.googleapis.com/css?family=Rajdhani');
.main {
margin: 15px;
max-width: 600;
padding: 15px;
line-height: 1.4;
font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
background-color: #ffffff;
}
.logo {
Expand Down
4 changes: 2 additions & 2 deletions examples/vue-kitchen-sink/src/stories/Welcome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@

<style>
.main {
margin: 15px;
max-width: 600;
padding: 15px;
line-height: 1.4;
font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
background-color: #ffffff;
}
.logo {
Expand Down
4 changes: 2 additions & 2 deletions lib/cli/generators/MITHRIL/template/stories/Welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ const Main = {
view: vnode => (
<article
style={{
margin: '15px',
maxWidth: '600px',
padding: '15px',
lineHeight: 1.4,
fontFamily: '"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif',
backgroundColor: '#ffffff',
}}
>
{vnode.children}
Expand Down
4 changes: 2 additions & 2 deletions lib/cli/generators/PREACT/template/stories/Welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ const Main = props => (
<article
{...props}
style={{
margin: 15,
maxWidth: 600,
padding: 15,
lineHeight: 1.4,
fontFamily: '"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif',
backgroundColor: '#ffffff',
}}
/>
);
Expand Down
Loading

0 comments on commit 8e68e14

Please sign in to comment.