-
-
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
Navbar dropdowns failing in IE<10 when bootstrap-theme.css included #10257
Comments
try using respond.js |
ouch,sorry. only see list of js(in firefox, double ouch) not page source I have more attention next time perhaps one quote in bootstrap doc about using HTML 5 tag in IE 8 and 9 for use html5shiv @jodytate try changing |
@cvrebert the example uses the development version of modernizr that includes the html5shiv. |
I've switched over to html5shiv and removed modernizr. Problem persists. |
After some more digging, it appears that line 158 in filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); The file as a whole, with the above line included and not commented out, passes a CSSLint test. http://csslint.net/ |
@fchiumeo changing |
apparently the problem is in property filter in IE8 standards mode change reference: http://msdn.microsoft.com/en-us/library/ie/ms530752%28v=vs.85%29.aspx |
@fchiumeo Good find. But changing to Here's more information on |
With @imthepitts, we found that adding |
in your template pd: do not change much, but it is something |
Same problem here - IE8 doesn't show the drop-down; IE9 shows the outline, but no items. Still happening with the latest version of the Adding Commenting out |
This is a problem of IE and the filter as you've correctly identified—it's why we had |
My workarrount is to put a This fixes the issue for me in IE9. |
I can confirm this issue for IE 9. Because of the corporate environment, it is not a solution to tell users to use another browser. I hope this gets fixed in v3.0.1. |
See also #6548 - there's a workaround by @balexandre (that removes the filter and thus the gradient):
|
With bootstrap-theme.css included, navbar dropdowns fail to work in IE 8. (You can see a one-pixel line appear indicating they're attempting to work, however.)
Test case:
http://jodytate.github.io/bootstrap-dropdown-test/
(Neither jsfiddle or jsbin worked reliably in IE 8 so the best way to test was a standalone site.)
The text was updated successfully, but these errors were encountered: