user.css

Same filename in this branch
  1. 9 core/themes/seven/css/components/user.css
  2. 9 core/themes/bartik/css/components/user.css
  3. 9 core/themes/starterkit_theme/css/components/user.css
  4. 9 core/themes/classy/css/components/user.css
Same filename in other branches
  1. 7.x modules/user/user.css
  2. 8.9.x core/profiles/demo_umami/themes/umami/css/classy/components/user.css
  3. 8.9.x core/themes/seven/css/classy/components/user.css
  4. 8.9.x core/themes/bartik/css/classy/components/user.css
  5. 8.9.x core/themes/classy/css/components/user.css
  6. 10 core/profiles/demo_umami/themes/umami/css/components/user/user.css
  7. 10 core/themes/starterkit_theme/css/components/user.css
  8. 11.x core/profiles/demo_umami/themes/umami/css/components/user/user.css
  9. 11.x core/themes/starterkit_theme/css/components/user.css

Theme styling for user module.

File

core/profiles/demo_umami/themes/umami/css/components/user/user.css

View source
  1. /**
  2. * @file
  3. * Theme styling for user module.
  4. */
  5. /* Visual styling for the Password strength indicator */
  6. .password-strength__meter {
  7. margin-top: 0.5em;
  8. background-color: #ebeae4;
  9. }
  10. .password-strength__indicator {
  11. -webkit-transition: width 0.5s ease-out;
  12. transition: width 0.5s ease-out;
  13. background-color: #77b259;
  14. }
  15. .password-strength__indicator.is-weak {
  16. background-color: #e62600;
  17. }
  18. .password-strength__indicator.is-fair {
  19. background-color: #e09600;
  20. }
  21. .password-strength__indicator.is-good {
  22. background-color: #0074bd;
  23. }
  24. .password-strength__indicator.is-strong {
  25. background-color: #77b259;
  26. }
  27. .password-confirm,
  28. .password-field,
  29. .password-strength,
  30. .password-confirm-match {
  31. width: 55%;
  32. }
  33. .password-suggestions {
  34. max-width: 34.7em;
  35. margin: 0.7em 0;
  36. padding: 0.2em 0.5em;
  37. border: 1px solid #b4b4b4;
  38. }
  39. .password-suggestions ul {
  40. margin-bottom: 0;
  41. }
  42. .confirm-parent,
  43. .password-parent {
  44. clear: left; /* LTR */
  45. overflow: hidden;
  46. max-width: 33em;
  47. margin: 0;
  48. }
  49. [dir="rtl"] .confirm-parent,
  50. [dir="rtl"] .password-parent {
  51. clear: right;
  52. }
  53. /* Styling for the status indicator of the passwords match test. */
  54. .password-confirm-message .ok {
  55. color: #325e1c;
  56. font-weight: bold;
  57. }
  58. .password-confirm-message .error {
  59. color: #a51b00;
  60. font-weight: bold;
  61. }

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.