Skip to content

Commit

Permalink
Base V2.6.3
Browse files Browse the repository at this point in the history
- Updated grid reset helpers .no-col-tablet, .no-col-desktop, .no-col-hd, .no-col-print within _helpers.less/_helpers.scss
- Added new reset helper for select boxes (.no-select) (thanks to Roland Toth for the suggestion #56)
- Version bump on package.json and bower.json
- Version bump on style.less/style.scss
  • Loading branch information
Matthew committed Nov 8, 2015
1 parent 08bf1fe commit fde268a
Show file tree
Hide file tree
Showing 9 changed files with 60 additions and 20 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.2",
"version": "2.6.3",
"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.3] - 2015-11-09
### Base V2.6.3
- Updated grid reset helpers .no-col-tablet, .no-col-desktop, .no-col-hd, .no-col-print within _helpers.less/_helpers.scss
- Added new reset helper for select boxes (.no-select)
- Version bump on package.json and bower.json
- Version bump on style.less/style.scss


## [2.6.2] - 2015-11-08
### Base V2.6.2
- Minor typo fix on _animations.less/_animations.scss
Expand Down
15 changes: 11 additions & 4 deletions dist/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1249,6 +1249,13 @@ input::-moz-focus-inner {
top: 4px;
left: 0;
}
.no-select {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
}
.animate {
-webkit-animation-duration: 1s;
animation-duration: 1s;
Expand Down Expand Up @@ -1293,7 +1300,7 @@ input::-moz-focus-inner {
.text-justify-tablet {
text-align: justify;
}
.col-none-tablet {
.no-col-tablet {
width: auto;
float: none;
}
Expand Down Expand Up @@ -1336,7 +1343,7 @@ input::-moz-focus-inner {
.text-justify-desktop {
text-align: justify;
}
.col-none-desktop {
.no-col-desktop {
width: auto;
float: none;
}
Expand Down Expand Up @@ -1379,7 +1386,7 @@ input::-moz-focus-inner {
.text-justify-hd {
text-align: justify;
}
.col-none-hd {
.no-col-hd {
width: auto;
float: none;
}
Expand Down Expand Up @@ -1422,7 +1429,7 @@ input::-moz-focus-inner {
.text-justify-print {
text-align: justify;
}
.col-none-print {
.no-col-print {
width: auto;
float: none;
}
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.2",
"version": "2.6.3",
"homepage": "http://getbase.org/",
"repository": {
"type": "git",
Expand Down
17 changes: 13 additions & 4 deletions src/less/base/_helpers.less
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,15 @@
}
}

// Select Box Reset
.no-select {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
}

// Animations
.animate {
.animate(1s);
Expand Down Expand Up @@ -170,7 +179,7 @@
.text-justify-tablet { text-align: justify; }

// Grid Resets
.col-none-tablet {
.no-col-tablet {
width: auto;
float: none;
}
Expand Down Expand Up @@ -198,7 +207,7 @@
.text-justify-desktop { text-align: justify; }

// Grid Resets
.col-none-desktop {
.no-col-desktop {
width: auto;
float: none;
}
Expand Down Expand Up @@ -226,7 +235,7 @@
.text-justify-hd { text-align: justify; }

// Grid Resets
.col-none-hd {
.no-col-hd {
width: auto;
float: none;
}
Expand Down Expand Up @@ -254,7 +263,7 @@
.text-justify-print { text-align: justify; }

// Grid Resets
.col-none-print {
.no-col-print {
width: auto;
float: none;
}
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.2 - Last Updated: November 08, 2015
// Version: 2.6.3 - Last Updated: November 09, 2015

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

Expand Down
17 changes: 13 additions & 4 deletions src/scss/base/_helpers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,15 @@
}
}

// Select Box Reset
.no-select {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
}

// Animations
.animate {
@include animate(1s);
Expand Down Expand Up @@ -170,7 +179,7 @@
.text-justify-tablet { text-align: justify; }

// Grid Resets
.col-none-tablet {
.no-col-tablet {
width: auto;
float: none;
}
Expand Down Expand Up @@ -198,7 +207,7 @@
.text-justify-desktop { text-align: justify; }

// Grid Resets
.col-none-desktop {
.no-col-desktop {
width: auto;
float: none;
}
Expand Down Expand Up @@ -226,7 +235,7 @@
.text-justify-hd { text-align: justify; }

// Grid Resets
.col-none-hd {
.no-col-hd {
width: auto;
float: none;
}
Expand Down Expand Up @@ -254,7 +263,7 @@
.text-justify-print { text-align: justify; }

// Grid Resets
.col-none-print {
.no-col-print {
width: auto;
float: none;
}
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.2 - Last Updated: November 08, 2015
// Version: 2.6.3 - Last Updated: November 09, 2015

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

Expand Down
15 changes: 11 additions & 4 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1249,6 +1249,13 @@ input::-moz-focus-inner {
top: 4px;
left: 0;
}
.no-select {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
}
.animate {
-webkit-animation-duration: 1s;
animation-duration: 1s;
Expand Down Expand Up @@ -1293,7 +1300,7 @@ input::-moz-focus-inner {
.text-justify-tablet {
text-align: justify;
}
.col-none-tablet {
.no-col-tablet {
width: auto;
float: none;
}
Expand Down Expand Up @@ -1336,7 +1343,7 @@ input::-moz-focus-inner {
.text-justify-desktop {
text-align: justify;
}
.col-none-desktop {
.no-col-desktop {
width: auto;
float: none;
}
Expand Down Expand Up @@ -1379,7 +1386,7 @@ input::-moz-focus-inner {
.text-justify-hd {
text-align: justify;
}
.col-none-hd {
.no-col-hd {
width: auto;
float: none;
}
Expand Down Expand Up @@ -1422,7 +1429,7 @@ input::-moz-focus-inner {
.text-justify-print {
text-align: justify;
}
.col-none-print {
.no-col-print {
width: auto;
float: none;
}
Expand Down

0 comments on commit fde268a

Please sign in to comment.