-
-
Notifications
You must be signed in to change notification settings - Fork 79k
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
bootstrap-theme.css: Button corners look funny in IE9 due to gradient filter #10620
Comments
@arechsteiner it's not a core framework issue, its a theme related issue. So it is v. highly unlikely you get theme fixes support. Anyway, your solution lies in this post use ie9 conditional comment and load ie9 specific css and in that set filter: none; so ie9 won't screw it. And it should solve your issue. |
Not sure what you mean, bootstrap-theme.css is part of the Bootstrap framework and delivered with it. It's not a third party component.
I don't think that's a good solution as it would simply remove the gradient in IE9. As I said earlier, the whole thing worked fine in BS 2.3.2. |
@saas786 No, the theme is absolutely officially supported, and we're definitely going to address this. |
In 2.x we removed the gradient for IE9. Edit: And we'll do the same thing here. |
@mdo: Had to check again to realize this. I was under the impression that there was a gradient in IE9. Well then.. |
…less due to bleed through with rounded corners
…less due to bleed through with rounded corners
Code snippet:
Result in IE9 (magnified):
I'm not entirely sure what causes this bug. But I think it has something to do with the IE gradient filter called by the mixin
.btn-styles(@btn-color: #555;)
intheme.less
, which then calls the vertical gradient mixin, with this attribute:When I comment this filter, then the button has rounded corners (but lacks gradient obviously). But then again, I think the same filter was used in Bootstrap 2.3 and there it works fine.
The text was updated successfully, but these errors were encountered: