-
-
Notifications
You must be signed in to change notification settings - Fork 79.1k
Prevent breadcrumb separator from getting underlined on hover when not using <ol> markup #18789
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
Conversation
Getting some obvious questions out of the way: (1) No, the IE hack cannot be simplified to: .breadcrumb-item:hover::before {
text-decoration: underline;
text-decoration: none;
} It must be 2 separate rules. (2) Yes, the IE hack does survive minification unscathed. |
CC: @mdo @patrickhlauke for review |
Hmm, how was this not a problem in v3? Wonder if it's a problem of using |
@mdo Because v3 required using |
86cdc26
to
86caa76
Compare
@mdo Any further feedback? |
Taking a look at a few ideas this weekend. |
Ah, shit, I understand what's going on now. It's because the |
Prevent breadcrumb separator from getting underlined on hover when not using <ol> markup
Uses wacky IE hack explained in the answers to http://stackoverflow.com/questions/8820286/how-to-remove-only-underline-from-abefore
Fixes #18733.
Closes #18740.