-
Notifications
You must be signed in to change notification settings - Fork 13.4k
fix(range): update tick styling and border radius #31080
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
base: next
Are you sure you want to change the base?
Changes from all commits
86e3459
5ae827e
05d635e
4763043
8ac3957
58b4383
c5fc6f7
bddc281
543ac3a
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 |
|---|---|---|
|
|
@@ -914,7 +914,14 @@ export class Range implements ComponentInterface { | |
| ))} | ||
|
|
||
| <div class="range-bar-container"> | ||
| <div class="range-bar" role="presentation" part="bar" /> | ||
| <div | ||
|
Contributor
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. Why are these changes being applied? These are already in
Contributor
Author
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. The permalink you attached refers to the
Contributor
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. Thank you! I completely missed that. It might be better to have a class on host then. But we can make that decision during ionic modular so this PR can move faster. |
||
| class={{ | ||
| 'range-bar': true, | ||
| 'has-ticks': ticks.length > 0, | ||
| }} | ||
| role="presentation" | ||
| part="bar" | ||
| /> | ||
| <div | ||
| class={{ | ||
| 'range-bar': true, | ||
|
|
||
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.
Is this style needed? I had to zoom in a lot to see it being applied and it doesn't seem like it really does much.