Skip to content

Commit

Permalink
Base V3.1.4
Browse files Browse the repository at this point in the history
- Corrected .row-m, .row-l, .row-xl bug in grid.scss
- Fixed IE bug with placeholder color override
- Version bump for style.scss, package.json and bower.json
  • Loading branch information
Matthew Hartman committed Jul 2, 2016
1 parent 363b47a commit 8d01d0f
Show file tree
Hide file tree
Showing 10 changed files with 62 additions and 49 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": "3.1.3",
"version": "3.1.4",
"homepage": "http://matthewhartman.github.io/base/",
"authors": [
"Matthew Hartman <[email protected]>"
Expand Down
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


## [3.1.4] - 2016-07-02
### Base V3.1.4
- Corrected .row-m, .row-l, .row-xl bug in grid.scss
- Fixed IE bug with placeholder color override
- Version bump for style.scss, package.json and bower.json


## [3.1.3] - 2016-06-18
### Base V3.1.3
- Updated animate mixin to animation
Expand Down
42 changes: 22 additions & 20 deletions dist/css/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/css/styles.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "getbase",
"version": "3.1.3",
"version": "3.1.4",
"description": "A Rock Solid, Responsive HTML/CSS Framework built to work on all devices big and small.",
"homepage": "http://getbase.org/",
"scripts": {
Expand Down
42 changes: 22 additions & 20 deletions src/css/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/css/styles.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/scss/base.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: 3.1.3 - Last Updated: June 18, 2016
// Version: 3.1.4 - Last Updated: July 02, 2016
========================================================================== */

Expand Down
2 changes: 2 additions & 0 deletions src/scss/base/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ textarea {
background-color: $base-input-background-color;
border: 1px solid $base-input-border-color;
overflow: auto;
border-radius: 0;
&:focus {
background-color: $base-input-background-focus-color;
border-color: $base-input-border-focus-color;
Expand Down Expand Up @@ -116,6 +117,7 @@ html [type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
border-radius: 0;
}

button::-moz-focus-inner,
Expand Down
8 changes: 4 additions & 4 deletions src/scss/base/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,29 +18,29 @@
position: relative;
margin-left: -$grid-gutter-m;
margin-right: -$grid-gutter-m;
.clear-m:before, .clear-m:after { content: ""; display: table; } .clear-m:after { clear: both; }
.row-m:before, .row-m:after { content: ""; display: table; } .row-m:after { clear: both; }
&:before, &:after { content: ""; display: table; } &:after { clear: both; }
}
.clear-m:before, .clear-m:after { content: ""; display: table; } .clear-m:after { clear: both; }
}
// Large Device Row
@include breakpoint(l) {
.row-l {
position: relative;
margin-left: -$grid-gutter-l;
margin-right: -$grid-gutter-l;
&:before, &:after { content: ""; display: table; } &:after { clear: both; }
}
.clear-l:before, .clear-l:after { content: ""; display: table; } .clear-l:after { clear: both; }
.row-l:before, .row-l:after { content: ""; display: table; } .row-l:after { clear: both; }
}
// Extra Large Device Row
@include breakpoint(xl) {
.row-xl {
position: relative;
margin-left: -$grid-gutter-xl;
margin-right: -$grid-gutter-xl;
&:before, &:after { content: ""; display: table; } &:after { clear: both; }
}
.clear-xl:before, .clear-xl:after { content: ""; display: table; } .clear-xl:after { clear: both; }
.row-xl:before, .row-xl:after { content: ""; display: table; } .row-xl:after { clear: both; }
}

// Container
Expand Down

0 comments on commit 8d01d0f

Please sign in to comment.