Skip to content

Commit

Permalink
Merge pull request #756 from varya/features/no-arrows
Browse files Browse the repository at this point in the history
Navigation arrows for a full screen mode are removed by default
  • Loading branch information
hannu committed Aug 21, 2015
2 parents 93bd9a6 + 12f0f07 commit 02f89d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
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

0 comments on commit 02f89d7

Please sign in to comment.