user.css

#permissions td.module {
  font-weight: bold;
}
#permissions td.permission {
  padding-left: 1.5em; /* LTR */
}
#permissions tr.odd .form-item,
#permissions tr.even .form-item {
  white-space: normal;
}
#user-admin-settings fieldset .fieldset-description {
  font-size: 0.85em;
  padding-bottom: .5em;
}

/**
 * Override default textfield float to put the "Add role" button next to
 * the input textfield.
 */
#user-admin-roles td.edit-name {
  clear: both;
}
#user-admin-roles .form-item-name {
  float: left; /* LTR */
  margin-right: 1em; /* LTR */
}

/**
 * Password strength indicator.
 */
.password-strength {
  width: 17em;
  float: right;  /* LTR */
  margin-top: 1.4em;
}
.password-strength-title {
  display: inline;
}
.password-strength-text {
  float: right; /* LTR */
  font-weight: bold;
}
.password-indicator {
  background-color: #C4C4C4;
  height: 0.3em;
  width: 100%;
}
.password-indicator div {
  height: 100%;
  width: 0%;
  background-color: #47C965;
}
input.password-confirm,
input.password-field {
  width: 16em;
  margin-bottom: 0.4em;
}
div.password-confirm {
  float: right;  /* LTR */
  margin-top: 1.5em;
  visibility: hidden;
  width: 17em;
}
div.form-item div.password-suggestions {
  padding: 0.2em 0.5em;
  margin: 0.7em 0;
  width: 38.5em;
  border: 1px solid #B4B4B4;
}
div.password-suggestions ul {
  margin-bottom: 0;
}
.confirm-parent,
.password-parent {
  clear: left; /* LTR */
  margin: 0;
  width: 36.3em;
}

/* Generated by user.module but used by profile.module: */
.profile {
  clear: both;
  margin: 1em 0;
}
.profile .user-picture {
  float: right; /* LTR */
  margin: 0 1em 1em 0; /* LTR */
}
.profile h3 {
  border-bottom: 1px solid #ccc;
}
.profile dl {
  margin: 0 0 1.5em 0;
}
.profile dt {
  margin: 0 0 0.2em 0;
  font-weight: bold;
}
.profile dd {
  margin: 0 0 1em 0;
}

File

drupal/modules/user/user.css
View source
  1. #permissions td.module {
  2. font-weight: bold;
  3. }
  4. #permissions td.permission {
  5. padding-left: 1.5em; /* LTR */
  6. }
  7. #permissions tr.odd .form-item,
  8. #permissions tr.even .form-item {
  9. white-space: normal;
  10. }
  11. #user-admin-settings fieldset .fieldset-description {
  12. font-size: 0.85em;
  13. padding-bottom: .5em;
  14. }
  15. /**
  16. * Override default textfield float to put the "Add role" button next to
  17. * the input textfield.
  18. */
  19. #user-admin-roles td.edit-name {
  20. clear: both;
  21. }
  22. #user-admin-roles .form-item-name {
  23. float: left; /* LTR */
  24. margin-right: 1em; /* LTR */
  25. }
  26. /**
  27. * Password strength indicator.
  28. */
  29. .password-strength {
  30. width: 17em;
  31. float: right; /* LTR */
  32. margin-top: 1.4em;
  33. }
  34. .password-strength-title {
  35. display: inline;
  36. }
  37. .password-strength-text {
  38. float: right; /* LTR */
  39. font-weight: bold;
  40. }
  41. .password-indicator {
  42. background-color: #C4C4C4;
  43. height: 0.3em;
  44. width: 100%;
  45. }
  46. .password-indicator div {
  47. height: 100%;
  48. width: 0%;
  49. background-color: #47C965;
  50. }
  51. input.password-confirm,
  52. input.password-field {
  53. width: 16em;
  54. margin-bottom: 0.4em;
  55. }
  56. div.password-confirm {
  57. float: right; /* LTR */
  58. margin-top: 1.5em;
  59. visibility: hidden;
  60. width: 17em;
  61. }
  62. div.form-item div.password-suggestions {
  63. padding: 0.2em 0.5em;
  64. margin: 0.7em 0;
  65. width: 38.5em;
  66. border: 1px solid #B4B4B4;
  67. }
  68. div.password-suggestions ul {
  69. margin-bottom: 0;
  70. }
  71. .confirm-parent,
  72. .password-parent {
  73. clear: left; /* LTR */
  74. margin: 0;
  75. width: 36.3em;
  76. }
  77. /* Generated by user.module but used by profile.module: */
  78. .profile {
  79. clear: both;
  80. margin: 1em 0;
  81. }
  82. .profile .user-picture {
  83. float: right; /* LTR */
  84. margin: 0 1em 1em 0; /* LTR */
  85. }
  86. .profile h3 {
  87. border-bottom: 1px solid #ccc;
  88. }
  89. .profile dl {
  90. margin: 0 0 1.5em 0;
  91. }
  92. .profile dt {
  93. margin: 0 0 0.2em 0;
  94. font-weight: bold;
  95. }
  96. .profile dd {
  97. margin: 0 0 1em 0;
  98. }