-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
SELECT component: display issue in IE11 #34
Comments
Oh. Yeah, this is definitely a bug. A sad one, right? The select component it's being rebuilt using I'm sorry to make you wait for that. Meanwhile I will find a workaround for you. I will post it here. |
Thank you for being so responsive, and, most importantly, thank you for building this library and giving us a way to make our apps 1000% better-looking with little effort! |
@cheresier I have found the problem. IE 11 have too much trouble to render flexbox. On Edge those problems were fixed. .md-select-menu .md-select-menu-container {
overflow: auto;
max-height: 256px; //This size needs to be like that, for now
} I tested this on selects with few options and worked too. With a lot of options, like the combo of fonts, the scrollbar applies. This is not gonna happen on the new md-select. Thank you! |
Awesome, thanks again! |
Already implemented and will be shipped on the very next release (v0.3.0) |
* comp(MdProgressBar): create progress bar with indeterminate state * comp(MdProgressBar): improve test execution * comp(MdProgressBar): remove example * comp(MdProgressBar): misc fixes * comp(MdProgressBar): improve test execution * comp(MdProgressSpinner): create progress spinner * comp(MdProgressSpinner): rename files to avoid name colision * docs(MdProgress): add api table * docs(MdProgress): add text descriptions * docs(MdProgress): small improvements
* origin/master: comp(MdProgress): create progress bar and progress spinner (#34)
When using the SELECT component in IE11, the scrollbars do not appear, and items spill outside the dropdown instead. I see this behavior both in my test page and in the official demo (https://marcosmoura.github.io/vue-material/#/components/select). See attachment for a screenshot.

The text was updated successfully, but these errors were encountered: