Skip to content

Commit

Permalink
** Base V2.3.4 **
Browse files Browse the repository at this point in the history
- Added display helpers for _print.less/_print.scss
- Version bump on package.json
- Version bump on style.less/style.scss
  • Loading branch information
Matthew committed Jul 15, 2015
1 parent 3f30b3b commit 05a5b20
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 5 deletions.
7 changes: 7 additions & 0 deletions changelog.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Base 2 Change Log

## [2.3.4] - 2015-07-15
### Base V2.3.4
- Added display helpers for _print.less/_print.scss
- Version bump on package.json
- Version bump on style.less/style.scss


## [2.3.3] - 2015-07-13
### Base V2.3.3
- Updated input[type=phone] to input[type=tel] in _forms.less/_forms.scss
Expand Down
8 changes: 7 additions & 1 deletion less/base/_print.less
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,10 @@ img { page-break-inside: avoid; max-width: 100%;}
// Typography
p, h2, h3 { orphans: 3; widows: 3; }
h2, h3 { page-break-after: avoid; }
abbr[title]:after { content: " (" attr(title) ")"; }
abbr[title]:after { content: " (" attr(title) ")"; }

// Display Types
.hide-print { display: none; }
.show-print { display: block; }
.show-print-inline-block { display: inline-block; }
.show-print-inline { display: inline; }
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.3 - Last Updated: July 13, 2015
// Version: 2.3.4 - Last Updated: July 15, 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.3",
"version": "2.3.4",
"homepage": "http://getbase.org/",
"repository": {
"type": "git",
Expand Down
8 changes: 7 additions & 1 deletion scss/base/_print.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,10 @@ img { page-break-inside: avoid; max-width: 100%;}
// Typography
p, h2, h3 { orphans: 3; widows: 3; }
h2, h3 { page-break-after: avoid; }
abbr[title]:after { content: " (" attr(title) ")"; }
abbr[title]:after { content: " (" attr(title) ")"; }

// Display Types
.hide-print { display: none; }
.show-print { display: block; }
.show-print-inline-block { display: inline-block; }
.show-print-inline { display: inline; }
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.3 - Last Updated: July 13, 2015
// Version: 2.3.4 - Last Updated: July 15, 2015

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

Expand Down
12 changes: 12 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1594,4 +1594,16 @@ input::-moz-focus-inner {
abbr[title]:after {
content: " (" attr(title) ")";
}
.hide-print {
display: none;
}
.show-print {
display: block;
}
.show-print-inline-block {
display: inline-block;
}
.show-print-inline {
display: inline;
}
}

0 comments on commit 05a5b20

Please sign in to comment.