From 023a98655cad5eeb9ec2620fd58eb526a5fef735 Mon Sep 17 00:00:00 2001 From: Matthew Date: Mon, 30 Nov 2015 17:55:33 +1100 Subject: [PATCH] Base V2.6.9 - Removed .input helper in _forms.less/_forms.scss as there is already a .field helper which does the same - Removed iOS styling on all input fields excluding input checkbox and radio - Version bump on package.json and bower.json - Version bump on style.less/style.scss --- bower.json | 2 +- changelog.markdown | 8 ++++++++ dist/style.css | 9 +++++++-- package.json | 2 +- src/less/base/_forms.less | 11 ++++++++++- src/less/style.less | 2 +- src/scss/base/_forms.scss | 11 ++++++++++- src/scss/style.scss | 2 +- src/style.css | 9 +++++++-- 9 files changed, 46 insertions(+), 10 deletions(-) diff --git a/bower.json b/bower.json index 5dfc1635..bc2dd8fc 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "base", - "version": "2.6.8", + "version": "2.6.9", "homepage": "http://matthewhartman.github.io/base/", "authors": [ "Matthew Hartman " diff --git a/changelog.markdown b/changelog.markdown index 6c06edda..23ffd99b 100644 --- a/changelog.markdown +++ b/changelog.markdown @@ -1,6 +1,14 @@ # Base 2 Change Log +## [2.6.9] - 2015-11-30 +### Base V2.6.9 +- Removed .input helper in _forms.less/_forms.scss as there is already a .field helper which does the same +- Removed iOS styling on all input fields excluding input checkbox and radio +- Version bump on package.json and bower.json +- Version bump on style.less/style.scss + + ## [2.6.8] - 2015-11-20 ### Base V2.6.8 - Added .flex helper in _helpers.less/_helpers.scss diff --git a/dist/style.css b/dist/style.css index 0e07953e..6b68054b 100644 --- a/dist/style.css +++ b/dist/style.css @@ -357,8 +357,13 @@ textarea { input { line-height: normal; } -.input { - width: 100%; +input:not([type=checkbox]), +input:not([type=radio]) { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-border-radius: 0; + border-radius: 0; } input[type="text"], input[type="email"], diff --git a/package.json b/package.json index c8b19a4b..cf475fe5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "base", - "version": "2.6.8", + "version": "2.6.9", "homepage": "http://getbase.org/", "repository": { "type": "git", diff --git a/src/less/base/_forms.less b/src/less/base/_forms.less index eca15013..419b85b0 100644 --- a/src/less/base/_forms.less +++ b/src/less/base/_forms.less @@ -33,7 +33,16 @@ textarea { // Inputs input { line-height: normal; } -.input { width: 100%; } + +input:not([type=checkbox]), +input:not([type=radio]) { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-border-radius: 0; + border-radius: 0; +} + input[type="text"], input[type="email"], input[type="password"], diff --git a/src/less/style.less b/src/less/style.less index 4c27a1e8..e2cf2be9 100644 --- a/src/less/style.less +++ b/src/less/style.less @@ -2,7 +2,7 @@ // Base Stylesheet - http://getbase.org // Author: Matthew Hartman - http://www.matthewhartman.com.au/ -// Version: 2.6.8 - Last Updated: November 20, 2015 +// Version: 2.6.9 - Last Updated: November 30, 2015 // ========================================================================== diff --git a/src/scss/base/_forms.scss b/src/scss/base/_forms.scss index d758e630..fa3e7351 100644 --- a/src/scss/base/_forms.scss +++ b/src/scss/base/_forms.scss @@ -33,7 +33,16 @@ textarea { // Inputs input { line-height: normal; } -.input { width: 100%; } + +input:not([type=checkbox]), +input:not([type=radio]) { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-border-radius: 0; + border-radius: 0; +} + input[type="text"], input[type="email"], input[type="password"], diff --git a/src/scss/style.scss b/src/scss/style.scss index 42a4a966..908eadb2 100644 --- a/src/scss/style.scss +++ b/src/scss/style.scss @@ -2,7 +2,7 @@ // Base Stylesheet - http://getbase.org // Author: Matthew Hartman - http://www.matthewhartman.com.au/ -// Version: 2.6.8 - Last Updated: November 20, 2015 +// Version: 2.6.9 - Last Updated: November 30, 2015 // ========================================================================== diff --git a/src/style.css b/src/style.css index 0e07953e..6b68054b 100644 --- a/src/style.css +++ b/src/style.css @@ -357,8 +357,13 @@ textarea { input { line-height: normal; } -.input { - width: 100%; +input:not([type=checkbox]), +input:not([type=radio]) { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-border-radius: 0; + border-radius: 0; } input[type="text"], input[type="email"],