-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make text clickable for radio buttons in diagnosis code page #470
Conversation
…attribute to cause clicking on the label to select the radio button (https://stackoverflow.com/a/1146936)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -91,6 +94,10 @@ | |||
|
|||
.col-2-sub-header { | |||
color: $darkMediumGray; | |||
font-family: Montserrat; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can remove this line. Montserrat is set by default in application.scss
@@ -91,6 +94,10 @@ | |||
|
|||
.col-2-sub-header { | |||
color: $darkMediumGray; | |||
font-family: Montserrat; | |||
font-size: 14px; | |||
font-weight: normal; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove this line and line below (99-100), these are the defaults
Gives each radio button an id and makes use of the
<label>
tag'sfor
attribute to cause clicking on the label to select the radio button (https://stackoverflow.com/a/1146936)closes #464