-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Fix(select): layout issue #7509
Conversation
Can you also check I did the git procedure correctly? I don't think you want the |
@topherfangio - can you review plz |
@david-meza Thanks for this PR! The code looks good to me, but can you squash your commits as outlined here: http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html Make sure to pick the first commit and squash the "Merged ..." commit. The commands you run should look something like: git checkout master
git pull upstream master --rebase
git checkout fix/select-layout-issue
git rebase -i master
git push --force Note that the force push will only update the branch you are on, so make sure you're still on the Let me know if you have questions! |
bb427b0
to
13d5e6d
Compare
Thanks! That was helpful. Only got a bit confused because there's no |
transform: translate3d(0, 2px, 0); | ||
|
||
._md-text { |
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.
Why is this nested under & > span:not(._md-select-icon)
?
What is the use case ?
13d5e6d
to
91109b7
Compare
That is a great question @ThomasBurleson . Sorry your comment got deleted in the rebase. Basically the reason why it was nested is because you should apply those rules to the element that actually contains the text, otherwise the parent would hide the overflow, but not apply the |
- Make selector less agressive restricting it to the text span only - Add a max width, so the overflow rule will go in effect if we reach the width of the container - Allow span to shrink if width is greather than that of the input container Closes angular#6200 and angular#6312
956bbdb
to
2ac0e1d
Compare
@topherfangio - please review |
Closes #6200 and #6312