diff --git a/build/css/main.css b/build/css/main.css index 881725a3..e48759d1 100644 --- a/build/css/main.css +++ b/build/css/main.css @@ -6360,6 +6360,9 @@ body { .soft { color: #ddd; } +[uib-tooltip] { + cursor: default; } + .section-footer { display: flex; align-items: center; @@ -6407,6 +6410,10 @@ body { color: #85898c; font-size: 10px; } +.step-footer-underline { + border-bottom: 1px dotted; + padding-bottom: 2px; } + .btn.step-footer, .step-footer.progress-button { font-size: 12px; border-bottom: 1px dashed; diff --git a/lib/gui/app.js b/lib/gui/app.js index 2b93f8d2..3e03eda4 100644 --- a/lib/gui/app.js +++ b/lib/gui/app.js @@ -25,6 +25,7 @@ const _ = require('lodash'); const app = angular.module('Etcher', [ require('angular-ui-router'), + require('angular-ui-bootstrap'), // Etcher modules require('./modules/drive-scanner'), diff --git a/lib/gui/partials/main.html b/lib/gui/partials/main.html index b937ac5d..d174b82b 100644 --- a/lib/gui/partials/main.html +++ b/lib/gui/partials/main.html @@ -8,7 +8,7 @@
- +
diff --git a/lib/gui/scss/main.scss b/lib/gui/scss/main.scss index 297fdb37..fc8a831b 100644 --- a/lib/gui/scss/main.scss +++ b/lib/gui/scss/main.scss @@ -77,6 +77,10 @@ body { color: $gray-light; } +[uib-tooltip] { + cursor: default; +} + .section-footer { @extend .text-center; @@ -148,6 +152,11 @@ body { font-size: 10px; } +.step-footer-underline { + border-bottom: 1px dotted; + padding-bottom: 2px; +} + .btn.step-footer { font-size: 12px; border-bottom: 1px dashed; diff --git a/package.json b/package.json index 7cf1def9..b5421faf 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "dependencies": { "angular": "^1.5.3", "angular-q-promisify": "^1.1.0", - "angular-ui-bootstrap": "^1.2.5", + "angular-ui-bootstrap": "^1.3.2", "angular-ui-router": "^0.2.18", "bluebird": "^3.0.5", "bootstrap-sass": "^3.3.5", diff --git a/screenshot.png b/screenshot.png index 1ce36c6c..6b748e59 100644 Binary files a/screenshot.png and b/screenshot.png differ