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

File diff suppressed because one or more lines are too long

0
public/build/dist/js/all-b77c8ca0d2.js vendored Executable file → Normal file
View File

View File

@@ -1,4 +1,4 @@
{ {
"dist/css/all.css": "dist/css/all-91ce4bc04d.css", "dist/css/all.css": "dist/css/all-ae8c616187.css",
"dist/js/all.js": "dist/js/all-b77c8ca0d2.js" "dist/js/all.js": "dist/js/all-b77c8ca0d2.js"
} }

View File

@@ -12,7 +12,7 @@
} }
.strengthify-bg, .strengthify-container, .strengthify-wrapper, .strengthify-separator { .strengthify-bg, .strengthify-container, .strengthify-wrapper, .strengthify-separator {
height: 5px; height: 8px;
} }
.strengthify-bg, .strengthify-container { .strengthify-bg, .strengthify-container {
@@ -22,23 +22,25 @@
} }
.strengthify-bg { .strengthify-bg {
background-color: #BBB; background-color: #eeeeee;
} }
.strengthify-separator { .strengthify-separator {
display: inline-block; display: inline-block;
position: absolute; position: absolute;
background-color: #FFF; background-color: #ffffff;
width: 1px; width: 2px;
z-index: 10; z-index: 10;
} }
.password-bad { .password-bad {
background-color: $cachet-red; background-color: $cachet-red;
} }
.password-medium { .password-medium {
background-color: $cachet-yellow; background-color: $cachet-yellow;
} }
.password-good { .password-good {
background-color: $cachet-green; background-color: $cachet-green;
} }