-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
fix(tabset): hovering a tab doesn't affect the other tabs (#540) #651
Conversation
Hey @cmajsmith, thanks for the pr! I'm trying to match the description with the PR code, could you please elaborate how this is working? Thanks. |
@cmajsmith ah, now I see it, thanks for the explanation! Is this a cross-browser way of fixing such issues? |
Hey @cmajsmith, got it. Though I personally feel like this is a bit fragile solution, and can be easily broken. Moreover, we have to introduce a new element in the dom, which is not particularly hidden. |
Hi, @nnixaa! I've considered using the solution you've provided before settling with the one I've applied. The problem with To be honest, I think both (that Assuming the inactive and unhovered tab is pale and becomes darker on hover - the control response will be enough to be noticed. The shift of neighboring tabs on click (caused with active tab turning into bold) will still occur, but it won't be as noticeable as on |
@cmajsmith I completely agree with you, let me check with the design team. |
Hey @cmajsmith, we discussed this and agreed that we can remove |
@nnixaa sure! I'll do it tomorrow once will have some time on my hands. Will update this PR once done. |
@nnixaa, seems like that is it. |
@cmajsmith great! Let's also remove the |
@nnixaa, it is still used for making active tab (both in tabset and route-tabset) bold. Bold was removed for hover only. |
@cmajsmith exactly! Merging then. |
Hurray! Thanks @nnixaa for your time and help :) |
Please read and mark the following check list before creating a pull request:
Short description of what this resolves:
This is a fix for #540 issue.