diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eea9f9f..9013c2c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/CHANGELOG_LATEST.md b/CHANGELOG_LATEST.md index b338dd74..608783f1 100644 --- a/CHANGELOG_LATEST.md +++ b/CHANGELOG_LATEST.md @@ -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)) diff --git a/lib/app/sass/_styleguide_variables.scss b/lib/app/sass/_styleguide_variables.scss index 87258f52..11612dbb 100644 --- a/lib/app/sass/_styleguide_variables.scss +++ b/lib/app/sass/_styleguide_variables.scss @@ -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; diff --git a/lib/app/sass/styleguide-app.scss b/lib/app/sass/styleguide-app.scss index de10f1fe..27ff8251 100644 --- a/lib/app/sass/styleguide-app.scss +++ b/lib/app/sass/styleguide-app.scss @@ -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; diff --git a/package.json b/package.json index e88fe882..ff173734 100644 --- a/package.json +++ b/package.json @@ -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"