-
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(choice-tile): implement and document vars and attrs #795
Conversation
Deploy preview for helix-ui ready! Built with commit 43e273c |
@@ -27,24 +25,22 @@ | |||
@mixin hxChoiceTile--invalid($pseudo-state: null) { | |||
@if $pseudo-state == focus { | |||
box-shadow: $focus-glow-invalid; | |||
} | |||
@else if $pseudo-state == hover { | |||
} @else if $pseudo-state == hover { | |||
background-color: $red-100; |
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 write : background-color: var(--hxChoiceTile-invalid-hover-bgcolor, $red-100);
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.
@@ -27,24 +25,22 @@ | |||
@mixin hxChoiceTile--invalid($pseudo-state: null) { | |||
@if $pseudo-state == focus { | |||
box-shadow: $focus-glow-invalid; | |||
} | |||
@else if $pseudo-state == hover { | |||
} @else if $pseudo-state == hover { | |||
background-color: $red-100; | |||
border-color: $red-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 write : border-color : var(--hxChoiceTile-invalid-hover-bordercolor, $red-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.
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.
Please rebase and fix merge conflicts.
@100stacks fixed merge conflicts ,rebased with master, added new variables and squashed the commits |
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.
@lalithkarikelli, we'll work on small mods to variable naming at a future time.
Dev LGTM.
Description
hx-choicetile
: implement and document variables and attributesWhat are the relevant story cards/tickets? Any additional PRs or other references?
Jira: SURF 2103
Before you request a review for this PR:
yarn test
to ensure all tests passed?