summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGunnar Mills <gmills@us.ibm.com>2018-04-05 10:38:00 -0500
committerGunnar Mills <gmills@us.ibm.com>2018-04-09 14:55:49 +0000
commit83f0896ebefb6560dd975180f95456546e4304b0 (patch)
treecce9e0107c55b71b57252edc831e258869000924
parent90f8e690e852bcb22f75b0fc61299ab6eb4b4b0d (diff)
downloadphosphor-webui-83f0896ebefb6560dd975180f95456546e4304b0.tar.gz
phosphor-webui-83f0896ebefb6560dd975180f95456546e4304b0.zip
Move login error to common error style
Created a generic error class, have the login error inherit it. Tested: Verified the login error looks the same. Change-Id: Ief373fa37ea655cfcb544861a4e540abbe65f77e Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
-rw-r--r--app/login/controllers/login-controller.html2
-rw-r--r--app/login/styles/index.scss11
2 files changed, 2 insertions, 11 deletions
diff --git a/app/login/controllers/login-controller.html b/app/login/controllers/login-controller.html
index ec88c0b..dbbe695 100644
--- a/app/login/controllers/login-controller.html
+++ b/app/login/controllers/login-controller.html
@@ -23,7 +23,7 @@
<input id="login__submit" class="btn-primary submit" type="button" value="Log in" role="button" ng-click="login(host, username, password)" ng-class="{error: error}" ng-disabled="dataService.loading">
- <p class="login__error-msg" role="alert" ng-if="error">{{description}}</p>
+ <p class="login__error-msg error-msg" role="alert" ng-if="error">{{description}}</p>
</form>
</div>
</div>
diff --git a/app/login/styles/index.scss b/app/login/styles/index.scss
index b4319e9..1499c93 100644
--- a/app/login/styles/index.scss
+++ b/app/login/styles/index.scss
@@ -106,16 +106,7 @@
}
.login__error-msg {
- background: lighten($error-color, 20%);
- padding: 1em;
- text-align: center;
- font-size: 1em;
- border: 1px solid $error-color;
- color: $black;
- font-family: "Courier New", Helvetica, Arial, sans-serif;
- font-weight: 700;
-
@include mediaQuery(medium) {
max-width: 100%;
}
-} \ No newline at end of file
+}
OpenPOWER on IntegriCloud