Skip to content

Commit

Permalink
Update: (Fixes liferay#355) Progress Bar styles to Clay V2 and BS4 bo…
Browse files Browse the repository at this point in the history
…x-shadow mixin doesn't support null values
  • Loading branch information
pat270 committed Aug 8, 2017
1 parent 0a05a24 commit 1a110a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/scss/atlas-theme/variables/_progress-bars.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
$progress-border-radius: 100px !default;
$progress-box-shadow: none !default;
$progress-font-size: 0.5625rem !default;
$progress-height: 0.5rem !default;

Expand Down
4 changes: 3 additions & 1 deletion src/scss/lexicon-base/_progress-bars.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
}

.progress-bar {
@include box-shadow($progress-bar-box-shadow);
@if ($progress-bar-box-shadow) {
@include box-shadow($progress-bar-box-shadow);
}
}

.progress-lg {
Expand Down

0 comments on commit 1a110a7

Please sign in to comment.