Small update to the password strength indicator

This commit is contained in:
Joseph Cohen
2015-10-03 03:19:47 -05:00
parent 1914e54def
commit 4baaf69907
4 changed files with 8 additions and 6 deletions
@@ -12,7 +12,7 @@
}
.strengthify-bg, .strengthify-container, .strengthify-wrapper, .strengthify-separator {
height: 5px;
height: 8px;
}
.strengthify-bg, .strengthify-container {
@@ -22,23 +22,25 @@
}
.strengthify-bg {
background-color: #BBB;
background-color: #eeeeee;
}
.strengthify-separator {
display: inline-block;
position: absolute;
background-color: #FFF;
width: 1px;
background-color: #ffffff;
width: 2px;
z-index: 10;
}
.password-bad {
background-color: $cachet-red;
}
.password-medium {
background-color: $cachet-yellow;
}
.password-good {
background-color: $cachet-green;
}