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 @@
-
+
@@ -81,16 +81,18 @@ ng-disabled="!app.selection.hasImage() || !app.selection.hasDrive()"> Finishing... Burn! - Starting... - + Starting... + + +
-
+

Burn Complete!

diff --git a/lib/scss/main.scss b/lib/scss/main.scss index ce83fd5b..7caec0a9 100644 --- a/lib/scss/main.scss +++ b/lib/scss/main.scss @@ -144,3 +144,10 @@ body { @extend .step-border; right: -120px; } + +.step-footer { + margin-top: 10px; + margin-bottom: -40px; + color: lighten($color-disabled, 5%); + font-size: 12px; +} diff --git a/lib/scss/modules/_space.scss b/lib/scss/modules/_space.scss index df1b3a1a..a2c2d743 100644 --- a/lib/scss/modules/_space.scss +++ b/lib/scss/modules/_space.scss @@ -14,6 +14,7 @@ * limitations under the License. */ +$spacing-huge: 55px; $spacing-large: 30px; $spacing-medium: 15px; $spacing-tiny: 5px; @@ -30,8 +31,8 @@ $spacing-tiny: 5px; margin: 0 $spacing-large; } -.space-bottom-large { - margin-bottom: $spacing-large * 1.5; +.space-bottom-huge { + margin-bottom: $spacing-huge; } .space-right-tiny {