-
Notifications
You must be signed in to change notification settings - Fork 157
refactor(*): Remove the need of hardcoded item heights in combo #14871
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
Changes from all commits
7b9d9fc
54ca89e
728d38d
b6988e5
0b9e3ed
3441bf3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -189,6 +189,7 @@ | |
%igx-combo__content { | ||
position: relative; | ||
overflow: hidden; | ||
max-height: calc(var(--size) * 10); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the baseline assumption of 10 items as the initial chunk size, right? I wonder if we should make this as a CSS variable bound to a property in the business logic, i.e. the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, exactly. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So the thing is that if we set a |
||
|
||
&:focus { | ||
outline: transparent; | ||
|
Uh oh!
There was an error while loading. Please reload this page.