Jump to content

Extra styles in userprofiles css


DanielH

Recommended Posts

Hello,

userprofiles.css causes a conflict when changing max-width of the login module fields because its called twice with different values.

first time on line 92:

.jrLoginModule .jrForm .jrFieldDiv input[type="text"],
.jrLoginModule .jrForm .jrFieldDiv input[type="password"] {
  width: 100%;
  max-width: 200px;
  padding: 6px 12px;
}

Then again on line 132:

.jrLoginModule .jrForm .jrFieldDiv input[type="text"],
.jrLoginModule .jrForm .jrFieldDiv input[type="password"] {
  max-width: 150px;
  margin: 0;
}

For me the 200px is better and I think the second instance was meant to define the margin alone, now width.

Cheers!
 

Link to comment
×
×
  • Create New...