mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-08 03:46:32 +00:00

* Extend ProgressButton to support a striped progress bar This feature will be used to implement the burn validation step. * Implement alert-ribbon CSS component This component will be used to inform an error situation to the user during the burn/check processes. * Add "Enable write validation on success" setting * Implement write validation support Signed-off-by: Juan Cruz Viotti <jviottidc@gmail.com> Fixes: https://github.com/resin-io/etcher/issues/45
8 lines
300 B
HTML
8 lines
300 B
HTML
<button class="progress-button progress-button--primary"
|
|
ng-class="{
|
|
'progress-button--striped': striped && striped != 'false'
|
|
}">
|
|
<span class="progress-button__content" ng-transclude></span>
|
|
<span class="progress-button__bar" ng-style="{ width: percentage + '%' }"></span>
|
|
</button>
|