-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(progress-bar): determinate state reflects value (#542)
Fixes #519
- Loading branch information
1 parent
b47097d
commit 6b86df0
Showing
3 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<!-- The background div is named as such because it appears below the other divs and is not sized based on values. --> | ||
<div class="md-progress-bar-background"></div> | ||
<div class="md-progress-bar-buffer" [style.transform]="bufferTransform()"></div> | ||
<div class="md-progress-bar-primary md-progress-bar-fill" [style.transform]="primaryTransform()"></div> | ||
<div class="md-progress-bar-buffer" [ngStyle]="bufferTransform()"></div> | ||
<div class="md-progress-bar-primary md-progress-bar-fill" [ngStyle]="primaryTransform()"></div> | ||
<div class="md-progress-bar-secondary md-progress-bar-fill"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters