Skip to content

Commit

Permalink
Merge pull request #759 from SC5/dev
Browse files Browse the repository at this point in the history
Release 0.3.30
  • Loading branch information
varya committed Aug 24, 2015
2 parents 93bd9a6 + d5d1c92 commit 6d11a01
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.30 (2015-08-24)

* Navigation arrows for a full screen mode are removed by default (#[756](https://github.com/SC5/sc5-styleguide/pull/756))

## 0.3.29 (2015-08-13)

* Do not use Helvetica Neue. Fix #742 (#[746](https://github.com/SC5/sc5-styleguide/pull/746))
Expand Down
5 changes: 2 additions & 3 deletions CHANGELOG_LATEST.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
## 0.3.29 (2015-08-13)
## 0.3.30 (2015-08-24)

* Do not use Helvetica Neue. Fix #742 (#[746](https://github.com/SC5/sc5-styleguide/pull/746))
* Missing files in dist. Fix #734 (#[745](https://github.com/SC5/sc5-styleguide/pull/745))
* Navigation arrows for a full screen mode are removed by default (#[756](https://github.com/SC5/sc5-styleguide/pull/756))

1 change: 1 addition & 0 deletions lib/app/sass/_styleguide_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ $action-color-change: 5% !default;

// Navigation
$header-text-color: white !default;
$navigation-arrows-visible: false;

$nav-button-color: $primary-color !default;
$nav-button-text-color: lighten($default-action-color, 10) !default;
Expand Down
6 changes: 5 additions & 1 deletion lib/app/sass/styleguide-app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,11 @@ Styleguide 4.4
position: fixed;
z-index: 99999;
right: 0;
display: inline;
@if $navigation-arrows-visible {
display: inline;
} @else {
display: none;
}
.next-nav, .prev-nav {
float: left;
cursor: pointer;
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": "sc5-styleguide",
"version": "0.3.29",
"version": "0.3.30",
"description": "Styleguide generator is a handy little tool that helps you generate good looking styleguides from stylesheets using KSS notation.",
"bin": {
"styleguide": "./bin/styleguide"
Expand Down

0 comments on commit 6d11a01

Please sign in to comment.