Skip to content

Commit

Permalink
Base V2.6.7
Browse files Browse the repository at this point in the history
- Added float helpers for tablet, desktop and HD devices in _helpers.less/_helpers.scss
- Removed _minimal-grid.less (general house cleaning)
- Version bump on package.json and bower.json
- Version bump on style.less/style.scss
  • Loading branch information
Matthew committed Nov 18, 2015
1 parent ff521ee commit 089c424
Show file tree
Hide file tree
Showing 9 changed files with 71 additions and 134 deletions.
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.7] - 2015-11-18
### Base V2.6.7
- Added float helpers for tablet, desktop and HD devices in _helpers.less/_helpers.scss
- Removed _minimal-grid.less (general house cleaning)
- Version bump on package.json and bower.json
- Version bump on style.less/style.scss


## [2.6.6] - 2015-11-13
### Base V2.6.6
- Updated font-weight variables to memorable names in _variables.less/_variables.scss
Expand Down
18 changes: 18 additions & 0 deletions dist/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1318,6 +1318,12 @@ input::-moz-focus-inner {
.inline-tablet {
display: inline;
}
.left-tablet {
float: left;
}
.right-tablet {
float: right;
}
.text-left-tablet {
text-align: left;
}
Expand Down Expand Up @@ -1361,6 +1367,12 @@ input::-moz-focus-inner {
.inline-desktop {
display: inline;
}
.left-desktop {
float: left;
}
.right-desktop {
float: right;
}
.text-left-desktop {
text-align: left;
}
Expand Down Expand Up @@ -1404,6 +1416,12 @@ input::-moz-focus-inner {
.inline-hd {
display: inline;
}
.left-hd {
float: left;
}
.right-hd {
float: right;
}
.text-left-hd {
text-align: left;
}
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.6",
"version": "2.6.7",
"homepage": "http://getbase.org/",
"repository": {
"type": "git",
Expand Down
131 changes: 0 additions & 131 deletions src/less/base/_grid-minimal.less

This file was deleted.

12 changes: 12 additions & 0 deletions src/less/base/_helpers.less
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,10 @@
.block-tablet { display: block; }
.inline-block-tablet { display: inline-block; }
.inline-tablet { display: inline; }

// Floats
.left-tablet { float: left; }
.right-tablet { float: right; }

// Text Alignments
.text-left-tablet { text-align: left; }
Expand Down Expand Up @@ -210,6 +214,10 @@
.inline-block-desktop { display: inline-block; }
.inline-desktop { display: inline; }

// Floats
.left-desktop { float: left; }
.right-desktop { float: right; }

// Text Alignments
.text-left-desktop { text-align: left; }
.text-right-desktop { text-align: right; }
Expand Down Expand Up @@ -238,6 +246,10 @@
.inline-block-hd { display: inline-block; }
.inline-hd { display: inline; }

// Floats
.left-hd { float: left; }
.right-hd { float: right; }

// Text Alignments
.text-left-hd { text-align: left; }
.text-right-hd { text-align: right; }
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.6 - Last Updated: November 13, 2015
// Version: 2.6.7 - Last Updated: November 18, 2015

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

Expand Down
12 changes: 12 additions & 0 deletions src/scss/base/_helpers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,10 @@
.block-tablet { display: block; }
.inline-block-tablet { display: inline-block; }
.inline-tablet { display: inline; }

// Floats
.left-tablet { float: left; }
.right-tablet { float: right; }

// Text Alignments
.text-left-tablet { text-align: left; }
Expand Down Expand Up @@ -210,6 +214,10 @@
.inline-block-desktop { display: inline-block; }
.inline-desktop { display: inline; }

// Floats
.left-desktop { float: left; }
.right-desktop { float: right; }

// Text Alignments
.text-left-desktop { text-align: left; }
.text-right-desktop { text-align: right; }
Expand Down Expand Up @@ -238,6 +246,10 @@
.inline-block-hd { display: inline-block; }
.inline-hd { display: inline; }

// Floats
.left-hd { float: left; }
.right-hd { float: right; }

// Text Alignments
.text-left-hd { text-align: left; }
.text-right-hd { text-align: right; }
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.6 - Last Updated: November 13, 2015
// Version: 2.6.7 - Last Updated: November 18, 2015

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

Expand Down
18 changes: 18 additions & 0 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1318,6 +1318,12 @@ input::-moz-focus-inner {
.inline-tablet {
display: inline;
}
.left-tablet {
float: left;
}
.right-tablet {
float: right;
}
.text-left-tablet {
text-align: left;
}
Expand Down Expand Up @@ -1361,6 +1367,12 @@ input::-moz-focus-inner {
.inline-desktop {
display: inline;
}
.left-desktop {
float: left;
}
.right-desktop {
float: right;
}
.text-left-desktop {
text-align: left;
}
Expand Down Expand Up @@ -1404,6 +1416,12 @@ input::-moz-focus-inner {
.inline-hd {
display: inline;
}
.left-hd {
float: left;
}
.right-hd {
float: right;
}
.text-left-hd {
text-align: left;
}
Expand Down

0 comments on commit 089c424

Please sign in to comment.