You are here

password_strength.css in Password Strength 6

Same filename and directory in other branches
  1. 5 password_strength.css
input.password-field {
  margin-left: 10px;
  margin-right: inherit;
}
input.password-confirm {
  margin-left: 10px;
  margin-right: inherit;
}
.warning {
  color: #e09010;
}
div.warning {
  border: 1px solid #f0c020;
}
.ok {
  color: #008000;
}
div.ok {
  border: 1px solid #00aa00;
}
div.ok, tr.ok {
  background: #dfd;
  color: #020;
  padding: 2px;
}

/*
** Password strength indicator
*/
span.password-strength {
  visibility: hidden;
}
span.password-title {
  font-weight: bold;
}
input.password-field {
  margin-right: 10px; /* LTR */
}
div.password-description {
  padding: 0 2px;
  margin: 4px 0 0 0;
  font-size: 0.85em;
  max-width: 500px;
}
div.password-description ul {
  margin-bottom: 0;
}
.password-parent {
  margin: 0 0 0 0;
}
/*
** Password confirmation checker
*/
input.password-confirm {
  margin-right: 10px; /* LTR */
}
.confirm-parent {
  margin: 5px 0 0 0;
}
span.password-confirm {
  visibility: hidden;
  font-weight: bold;
}
span.password-confirm span {
  font-weight: normal;
}

File

password_strength.css
View source
  1. input.password-field {
  2. margin-left: 10px;
  3. margin-right: inherit;
  4. }
  5. input.password-confirm {
  6. margin-left: 10px;
  7. margin-right: inherit;
  8. }
  9. .warning {
  10. color: #e09010;
  11. }
  12. div.warning {
  13. border: 1px solid #f0c020;
  14. }
  15. .ok {
  16. color: #008000;
  17. }
  18. div.ok {
  19. border: 1px solid #00aa00;
  20. }
  21. div.ok, tr.ok {
  22. background: #dfd;
  23. color: #020;
  24. padding: 2px;
  25. }
  26. /*
  27. ** Password strength indicator
  28. */
  29. span.password-strength {
  30. visibility: hidden;
  31. }
  32. span.password-title {
  33. font-weight: bold;
  34. }
  35. input.password-field {
  36. margin-right: 10px; /* LTR */
  37. }
  38. div.password-description {
  39. padding: 0 2px;
  40. margin: 4px 0 0 0;
  41. font-size: 0.85em;
  42. max-width: 500px;
  43. }
  44. div.password-description ul {
  45. margin-bottom: 0;
  46. }
  47. .password-parent {
  48. margin: 0 0 0 0;
  49. }
  50. /*
  51. ** Password confirmation checker
  52. */
  53. input.password-confirm {
  54. margin-right: 10px; /* LTR */
  55. }
  56. .confirm-parent {
  57. margin: 5px 0 0 0;
  58. }
  59. span.password-confirm {
  60. visibility: hidden;
  61. font-weight: bold;
  62. }
  63. span.password-confirm span {
  64. font-weight: normal;
  65. }