Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2.x 🚀 #341

Merged
merged 23 commits into from
Jun 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
cb93b87
fix: remove input shadow on ios
Mar 31, 2019
4542e0d
fix: remove underline in hover and set color
Pedro-Souza Mar 31, 2019
4a9dac5
Merge pull request #330 from Pedro-Souza/fix-hover-in-linked-button
BcRikko Mar 31, 2019
b575368
Merge branch 'develop' into fix-input-ios
BcRikko Mar 31, 2019
29dd495
Merge pull request #329 from lucasjs/fix-input-ios
BcRikko Mar 31, 2019
f8c0f8d
chore: security update
BcRikko May 12, 2019
7c6abfd
Merge pull request #333 from nostalgic-css/security-update
guastallaigor May 13, 2019
e285d14
feat(select): add select is-dark class type like input component
guastallaigor May 18, 2019
966a950
Merge pull request #335 from nostalgic-css/add-select-is-dark
BcRikko May 19, 2019
8fe6d40
refactor: convert local images to data URIs
trezy May 22, 2019
e4b36ff
chore: security update
BcRikko May 31, 2019
16b8ac5
Merge pull request #340 from nostalgic-css/security-update
guastallaigor May 31, 2019
cfca1d4
feat: add the new nes-cursor class
May 31, 2019
9eaf72e
Merge branch 'develop' into 339_add-a-way-to-access-the-pointer-cursor
alexd99 May 31, 2019
6f60169
Merge pull request #342 from alexd99/339_add-a-way-to-access-the-poin…
BcRikko Jun 1, 2019
3f7314c
Merge branch 'master' into develop
BcRikko Jun 1, 2019
bd118e2
refactor(storybook/webpack.config.js): add custom functions
BcRikko Jun 4, 2019
94e766e
Merge branch 'develop' into refactor/convert-cursor-images-to-data-uris
BcRikko Jun 4, 2019
c2c865a
Merge pull request #337 from nostalgic-css/refactor/convert-cursor-im…
BcRikko Jun 4, 2019
888b20c
docs: add select and input is-dark to docs
guastallaigor Jun 4, 2019
9dd8014
Merge pull request #343 from nostalgic-css/add-select-input-is-dark-docs
BcRikko Jun 4, 2019
6307bfc
refactor: move helper.scss
BcRikko Jun 4, 2019
7520b18
Merge pull request #344 from nostalgic-css/move-helper
guastallaigor Jun 4, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .storybook/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
const path = require('path');
const scssFunctions = require('../scripts/scssFunctions');

module.exports = {
module: {
rules: [
{
test: /\.scss$/,
loaders: ['style-loader', 'css-loader', 'sass-loader'],
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{
loader: 'sass-loader',
options: {
functions: scssFunctions,
},
},
],
include: path.resolve(__dirname, '../'),
},
{
Expand Down
16 changes: 16 additions & 0 deletions docs/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@ const sampleCollection = [
<div class="nes-field is-inline">
<label for="error_field">.input.is-error</label>
<input type="text" id="error_field" class="nes-input is-error" placeholder="awesome.css">
</div>

<div style="background-color:#212529; padding: 1rem;" class="nes-field is-inline">
<label for="dark_field" style="color:#fff;">.input.is-dark</label>
<input type="text" id="dark_field" class="nes-input is-dark" placeholder="dark.css">
</div>`,
},
{
Expand Down Expand Up @@ -125,6 +130,17 @@ const sampleCollection = [
<option value="0">To be</option>
<option value="1">Not to be</option>
</select>
</div>

<div style="background-color:#212529; padding: 1rem 1.2rem 1rem 1rem;width:calc(100% + 8px)">
<label for="dark_select" style="color:#fff">nes-select.is-dark</label>
<div class="nes-select is-dark">
<select required id="dark_select">
<option value="" disabled selected hidden>Select...</option>
<option value="0">To be</option>
<option value="1">Not to be</option>
</select>
</div>
</div>`,
},
{
Expand Down
Loading