Skip to content
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

Closed
cheresier opened this issue Oct 26, 2016 · 5 comments
Closed

SELECT component: display issue in IE11 #34

cheresier opened this issue Oct 26, 2016 · 5 comments
Assignees
Milestone

Comments

@cheresier
Copy link

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.
2016-10-26 15_47_50-vue material - internet explorer

@marcosmoura marcosmoura added this to the v0.3.0 milestone Oct 26, 2016
@marcosmoura marcosmoura self-assigned this Oct 26, 2016
@marcosmoura
Copy link
Member

Oh. Yeah, this is definitely a bug. A sad one, right?

The select component it's being rebuilt using md-menu. This new menu component is already finished. I will start to rework select on top of this menu pretty soon. Both will be released in the next minor version (v0.3.0).

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 reporting this!

@cheresier
Copy link
Author

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!

@marcosmoura
Copy link
Member

marcosmoura commented Oct 26, 2016

@cheresier I have found the problem. IE 11 have too much trouble to render flexbox. On Edge those problems were fixed.
For now the workaround is not that good. You have to add a custom css with those properties:

.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!

@cheresier
Copy link
Author

Awesome, thanks again!

@marcosmoura
Copy link
Member

Already implemented and will be shipped on the very next release (v0.3.0)

marcosmoura added a commit that referenced this issue Nov 14, 2017
* 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
marcosmoura added a commit that referenced this issue Nov 14, 2017
* origin/master:
  comp(MdProgress): create progress bar and progress spinner (#34)
# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

No branches or pull requests

2 participants