-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
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
dropdowns.less: Add space before IE8 workaround. #16384
Conversation
X-Ref: #16258 |
I've confirmed via Sauce that adding the space doesn't degrade the effectiveness of the IE8 fix. |
OK, so it's good to go then? |
BTW, don't forget to update the node_modules in bot and shrinkwrap for the new clean-css version. |
The bot installs using the shrinkwrap file on every build, so we just need to reshrinkwrap. |
All right, done. |
Now, this PR is basically a consistency change since in all other cases we use |
@@ -11,7 +11,7 @@ | |||
margin-left: 2px; | |||
vertical-align: middle; | |||
border-top: @caret-width-base dashed; | |||
border-top: @caret-width-base ~"solid\9"; // IE8 | |||
border-top: @caret-width-base ~"solid \9"; // IE8 |
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.
Perhaps we should use
border-top: @caret-width-base solid ~"\9"
?
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.
It results to the same CSS, not sure which one is preferable.
ef50d8f
to
1a44524
Compare
This in turn works around an issue with clean-css (fixed in 3.2.6). So this basically is just a consistency change.
1a44524
to
5ca44f9
Compare
dropdowns.less: Add space before IE8 workaround.
This in turn works around an issue with clean-css.
clean-css/clean-css#556
/CC @cvrebert @mdo