Skip to content

Commit

Permalink
** Base V2.3.5 **
Browse files Browse the repository at this point in the history
- Fixed :active state on custom buttons in _assets.less/_assets.scss
- Version bump on package.json
- Version bump on style.less/style.scss
- Added minor comment to gulpfile.js
  • Loading branch information
Matthew committed Aug 1, 2015
1 parent 05a5b20 commit 051a3d1
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 8 deletions.
9 changes: 9 additions & 0 deletions changelog.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Base 2 Change Log


## [2.3.5] - 2015-08-01
### Base V2.3.5
- Fixed :active state on custom buttons in _assets.less/_assets.scss
- Version bump on package.json
- Version bump on style.less/style.scss
- Added minor comment to gulpfile.js


## [2.3.4] - 2015-07-15
### Base V2.3.4
- Added display helpers for _print.less/_print.scss
Expand Down
1 change: 1 addition & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Base Gulp File - Compiling LESS/SCSS
var gulp = require('gulp'),
watch = require('gulp-watch'),
sass = require('gulp-sass'),
Expand Down
2 changes: 1 addition & 1 deletion less/base/_assets.less
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
&:hover, &:active { text-decoration: none; }
&:hover { background: #f9f9f9; }
&:active { background: #fff; }
}
.button-primary {
// Add your styles here
Expand Down
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.4 - Last Updated: July 15, 2015
// Version: 2.3.5 - Last Updated: August 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.4",
"version": "2.3.5",
"homepage": "http://getbase.org/",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion scss/base/_assets.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
&:hover, &:active { text-decoration: none; }
&:hover { background: #f9f9f9; }
&:active { background: #fff; }
}
.button-primary {
// Add your styles here
Expand Down
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.4 - Last Updated: July 15, 2015
// Version: 2.3.5 - Last Updated: August 1, 2015

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

Expand Down
7 changes: 4 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -426,12 +426,13 @@ input::-moz-focus-inner {
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.button:hover,
.button:active {
text-decoration: none;
}
.button:hover {
background: #f9f9f9;
}
.button:active {
background: #fff;
}
.button-link {
color: #cd5c5c;
text-decoration: underline;
Expand Down

0 comments on commit 051a3d1

Please sign in to comment.