Hi team,
We have customized the regular Discourse create account form using a grid layout as shown below:
Currently, we have hidden the full name using the below SCSS:
.d-modal.create-account .login-form {
form{
.input-group:nth-child(3)
display:none !important;
}
}
}
We hide full name fields using nth-child selector as there is no unique class for the below mention input-group
div:
But now we have enabled the Google Oauth2 login on which the full name field is at the 4th position. So current CSS breaks the Create account for the Auth provider create account form as shown below:
How I can identify whether the current form is a Regular create account form or Auth provider (such as google oauth2) form using CSS? So I can apply CSS for the fields accordingly.
Similar issue for the Password field.
Thanks,
Saurabh