Skip to content

Commit

Permalink
** Base V2.3.7 **
Browse files Browse the repository at this point in the history
- Removed input specific on placeholders in _forms.less/_forms.scss
- Version bump on package.json
- Version bump on style.less/style.scss
  • Loading branch information
Matthew committed Sep 1, 2015
1 parent fa9cdd5 commit c81e981
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 15 deletions.
7 changes: 7 additions & 0 deletions changelog.markdown
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Base 2 Change Log


## [2.3.7] - 2015-09-01
### Base V2.3.7
- Removed input specific on placeholders in _forms.less/_forms.scss
- Version bump on package.json
- Version bump on style.less/style.scss


## [2.3.6] - 2015-08-19
### Base V2.3.6
- Added input[type=date] in _forms.less/_forms.scss
Expand Down
8 changes: 4 additions & 4 deletions less/base/_forms.less
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ input::-moz-focus-inner {
}

// Placeholder Colour
input::-webkit-input-placeholder { color: @base-placeholder-color; }
input:-moz-placeholder { color: @base-placeholder-color; }
input::-moz-placeholder { color: @base-placeholder-color; }
input:-ms-input-placeholder { color: @base-placeholder-color; }
::-webkit-input-placeholder { color: @base-placeholder-color; }
:-moz-placeholder { color: @base-placeholder-color; }
::-moz-placeholder { color: @base-placeholder-color; }
:-ms-input-placeholder { color: @base-placeholder-color; }
2 changes: 1 addition & 1 deletion 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.3.6 - Last Updated: August 19, 2015
// Version: 2.3.7 - Last Updated: September 1, 2015

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

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.3.6",
"version": "2.3.7",
"homepage": "http://getbase.org/",
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions scss/base/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ input::-moz-focus-inner {
}

// Placeholder Colour
input::-webkit-input-placeholder { color: $base-placeholder-color; }
input:-moz-placeholder { color: $base-placeholder-color; }
input::-moz-placeholder { color: $base-placeholder-color; }
input:-ms-input-placeholder { color: $base-placeholder-color; }
::-webkit-input-placeholder { color: $base-placeholder-color; }
:-moz-placeholder { color: $base-placeholder-color; }
::-moz-placeholder { color: $base-placeholder-color; }
:-ms-input-placeholder { color: $base-placeholder-color; }
2 changes: 1 addition & 1 deletion 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.3.6 - Last Updated: August 19, 2015
// Version: 2.3.7 - Last Updated: September 1, 2015

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

Expand Down
8 changes: 4 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -419,16 +419,16 @@ input::-moz-focus-inner {
border: 0;
padding: 0;
}
input::-webkit-input-placeholder {
::-webkit-input-placeholder {
color: #999999;
}
input:-moz-placeholder {
:-moz-placeholder {
color: #999999;
}
input::-moz-placeholder {
::-moz-placeholder {
color: #999999;
}
input:-ms-input-placeholder {
:-ms-input-placeholder {
color: #999999;
}
.button {
Expand Down

0 comments on commit c81e981

Please sign in to comment.