You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
663 B
20 lines
663 B
/* Hide warnings fields if usable password is selected */
|
|
form:has(#id_usable_password input[value="true"]:checked) .messagelist {
|
|
display: none;
|
|
}
|
|
|
|
/* Hide password fields if unusable password is selected */
|
|
form:has(#id_usable_password input[value="false"]:checked) .field-password1,
|
|
form:has(#id_usable_password input[value="false"]:checked) .field-password2 {
|
|
display: none;
|
|
}
|
|
|
|
/* Select appropriate submit button */
|
|
form:has(#id_usable_password input[value="true"]:checked) input[type="submit"].unset-password {
|
|
display: none;
|
|
}
|
|
|
|
form:has(#id_usable_password input[value="false"]:checked) input[type="submit"].set-password {
|
|
display: none;
|
|
}
|