-
Notifications
You must be signed in to change notification settings - Fork 26
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
docs(checkbox): implement and document vars and attrs #798
docs(checkbox): implement and document vars and attrs #798
Conversation
Deploy preview for helix-ui ready! Built with commit fe93c05 |
@@ -120,11 +120,11 @@ hx-checkbox-control { | |||
|
|||
&:checked, | |||
&:indeterminate { | |||
color: $cyan-900; | |||
color: var(--hxCheckbox-indeterminate, $cyan-900); |
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.
please change to var(--hxCheckbox-indeterminate-color, $cyan-900);
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.
Changes have been done, Please review
border-color: $cyan-900; | ||
color: $cyan-900; | ||
border-color: var(--hxCheckbox-indeterminate-label-bordercolor, $cyan-900); | ||
color: var(--hxCheckbox-indeterminate-label, $cyan-900); |
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.
please change to var(--hxCheckbox-indeterminate-label-color, $cyan-900);
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.
Changes have been done, Please review
@@ -179,7 +179,7 @@ hx-checkbox-control > input[type="checkbox"]:disabled { | |||
} | |||
|
|||
~ label { | |||
color: $gray-700; | |||
color: var(--hxCheckbox-disabled-label, $gray-700); |
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.
please change to var(--hxCheckbox-disabled-label-color, $gray-700);
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.
Changes have been done, Please review
@@ -8,22 +8,22 @@ | |||
box-shadow: $focus-glow; | |||
|
|||
&::-ms-check { | |||
border-color: $cyan-700; | |||
border-color: var(--hxCheckbox-bordercolor-focus, $cyan-700); |
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.
please follow same pattern through out the application .
change it to var(--hxCheckbox-focus-bordercolor, $cyan-700);
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.
Changes have been done, Please review
1dcf27e
to
58285d3
Compare
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.
@BY00565233, please rebase and fix merge conflicts.
58285d3
to
9519948
Compare
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.
Please rebase.
9519948
to
fe93c05
Compare
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.
DEV LGTM
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.
Dev LGTM
Description
hx-checkbox
: implement and document variables and attributesWhat are the relevant story cards/tickets? Any additional PRs or other references?
Jira: SURF-2102
Before you request a review for this PR:
yarn test
to ensure all tests passed?