diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-27 12:23:48 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-27 12:23:48 -0700 |
commit | 1347a300509b2ab3083bb88193987c18b33187ad (patch) | |
tree | 739a29a66185b9cbc1263c66434c7cba3b467599 /modules/user/css | |
parent | 156a99beef968a22167502bb6389b4df7526feb0 (diff) |
Add a password strength meter.
Diffstat (limited to 'modules/user/css')
-rw-r--r-- | modules/user/css/progressImg1.png | bin | 0 -> 390 bytes | |||
-rw-r--r-- | modules/user/css/user.css | 36 |
2 files changed, 36 insertions, 0 deletions
diff --git a/modules/user/css/progressImg1.png b/modules/user/css/progressImg1.png Binary files differnew file mode 100644 index 00000000..a9093647 --- /dev/null +++ b/modules/user/css/progressImg1.png diff --git a/modules/user/css/user.css b/modules/user/css/user.css index 3b5e7ac2..67d4f196 100644 --- a/modules/user/css/user.css +++ b/modules/user/css/user.css @@ -54,3 +54,39 @@ li.g-group .g-user .g-button { li.g-default-group h4, li.g-default-group .g-user { color: gray; } + +.g-password-strength0 { + background: url(progressImg1.png) no-repeat 0 0; + width: 138px; + height: 7px; +} +.g-password-strength10 { + background-position:0 -7px; +} +.g-password-strength20 { + background-position:0 -14px; +} +.g-password-strength30 { + background-position:0 -21px; +} +.g-password-strength40 { + background-position:0 -28px; +} +.g-password-strength50 { + background-position:0 -35px; +} +.g-password-strength60 { + background-position:0 -42px; +} +.g-password-strength70 { + background-position:0 -49px; +} +.g-password-strength80 { + background-position:0 -56px; +} +.g-password-strength90 { + background-position:0 -63px; +} +.g-password-strength100 { + background-position:0 -70px; +} |