diff --git a/build/browser/app.js b/build/browser/app.js index 38205d16..806df0db 100644 --- a/build/browser/app.js +++ b/build/browser/app.js @@ -388,7 +388,7 @@ imageWriter.service('ImageWriterService', function($q, $timeout) { // Transform bytes to megabytes preserving only two decimal places self.state.speed = Math.floor(state.speed / 1e+6 * 100) / 100 || 0; - console.debug('Progress: ' + self.state.progress + ' at ' + self.state.speed + ' MB/s'); + console.debug('Progress: ' + self.state.progress + '% at ' + self.state.speed + ' MB/s'); }); }; diff --git a/build/css/main.css b/build/css/main.css index 21010740..cfa63288 100644 --- a/build/css/main.css +++ b/build/css/main.css @@ -5904,8 +5904,8 @@ body { .space-horizontal-large { margin: 0 30px; } -.space-bottom-large { - margin-bottom: 45px; } +.space-bottom-huge { + margin-bottom: 55px; } .space-right-tiny { margin-right: 5px; } @@ -5987,3 +5987,9 @@ body { .step-border-right { right: -120px; } + +.step-footer { + margin-top: 10px; + margin-bottom: -40px; + color: #85898c; + font-size: 12px; } diff --git a/lib/browser/modules/image-writer.js b/lib/browser/modules/image-writer.js index 1d1fbe23..8c802e83 100644 --- a/lib/browser/modules/image-writer.js +++ b/lib/browser/modules/image-writer.js @@ -80,7 +80,7 @@ imageWriter.service('ImageWriterService', function($q, $timeout) { // Transform bytes to megabytes preserving only two decimal places self.state.speed = Math.floor(state.speed / 1e+6 * 100) / 100 || 0; - console.debug('Progress: ' + self.state.progress + ' at ' + self.state.speed + ' MB/s'); + console.debug('Progress: ' + self.state.progress + '% at ' + self.state.speed + ' MB/s'); }); }; diff --git a/lib/index.html b/lib/index.html index 3bf32e5b..e16abcb3 100644 --- a/lib/index.html +++ b/lib/index.html @@ -19,7 +19,7 @@