Skip to content

Commit

Permalink
Base V2.6.9
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
Matthew committed Nov 30, 2015
1 parent 0837862 commit 023a986
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "base",
"version": "2.6.8",
"version": "2.6.9",
"homepage": "http://matthewhartman.github.io/base/",
"authors": [
"Matthew Hartman <[email protected]>"
Expand Down
8 changes: 8 additions & 0 deletions changelog.markdown
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 7 additions & 2 deletions dist/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "base",
"version": "2.6.8",
"version": "2.6.9",
"homepage": "http://getbase.org/",
"repository": {
"type": "git",
Expand Down
11 changes: 10 additions & 1 deletion src/less/base/_forms.less
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down
2 changes: 1 addition & 1 deletion src/less/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -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

// ==========================================================================

Expand Down
11 changes: 10 additions & 1 deletion src/scss/base/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down
2 changes: 1 addition & 1 deletion src/scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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

// ==========================================================================

Expand Down
9 changes: 7 additions & 2 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit 023a986

Please sign in to comment.