-
Notifications
You must be signed in to change notification settings - Fork 78
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
feat(combobox-item, combobox-item-group): update padding indentation for nested groups & items #10847
feat(combobox-item, combobox-item-group): update padding indentation for nested groups & items #10847
Conversation
…for nested groups & items
Using |
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.
Visual changes lookin' good!
Can we add scale coverage to include Item Groups and nesting? |
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.
Looks good @anveshmekala ! 🦖
@@ -45,8 +39,7 @@ | |||
flex-1 | |||
border-b | |||
font-bold; | |||
padding-block: var(--calcite-combobox-item-spacing-unit-l); | |||
padding-inline: var(--calcite-combobox-item-spacing-unit-s); | |||
padding: var(--calcite-combobox-item-spacing-indent); |
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.
nitpick: maybe indent
doesn't make sense in the var name anymore? Since it covers both inline and block?
padding-block: var(--calcite-combobox-item-spacing-unit-s); | ||
padding-inline: var(--calcite-combobox-item-spacing-unit-l); | ||
padding-inline-end: var(--calcite-combobox-item-spacing-indent); | ||
padding-inline-start: var(--calcite-combobox-item-indent-value); |
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.
nitpick: difference between indent
and indent-value
? Maybe these could be renamed as well.
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.
g2g from design 🚀
Related Issue: #7099
Summary
Updates padding indentation for nested
combobox-item-group
's &combobox-items
's .