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

[Bug Report] Data Table footer does not render properly in IE11 #9790

Closed
JeffreyStevens opened this issue Nov 25, 2019 · 3 comments
Closed
Labels
C: VDataTable VDatatable duplicate The issue has already been reported

Comments

@JeffreyStevens
Copy link

Good Footer - Chrome
Bad Footer - IE

Environment

Vuetify Version: 2.1.11
Vue Version: 2.6.10
Browsers: Internet Explorer
OS: Mac OS 10.14.6

Steps to reproduce

You can see it in IE in our actual application but I can't get codepen to run in IE.

Expected Behavior

Footer 'Rows per page', selection drop down, pagination text, before and after icons run together (overlay each other).

Actual Behavior

Footer 'Rows per page', selection drop down, pagination text, before and after icons should not overlay each other.

Reproduction Link

https://codepen.io/jeff1132/pen/zYYQoZp

@ghost ghost added the S: triage label Nov 25, 2019
@jacekkarczmarczyk jacekkarczmarczyk added C: VDataTable VDatatable platform specific The issue only occurs on a specific platform labels Nov 26, 2019
@JeffreyStevens
Copy link
Author

Current fix in my SCSS file:

//------------------------------------------------------------
// These are workarounds to fix the footer display in IE11.
//------------------------------------------------------------
.v-dialog .v-data-footer__select {
  flex: 1 1 auto;

  .v-select {
    flex-basis: 50px; // set minimum width of select menu
  }
}

.v-list-item .v-list-item__content {
  flex-basis: 25px; // set minimum width of menu item
  overflow: auto; // override overflow: hidden

  // The following is for Chrome select drop-down.
  .v-list-item__title {
    width: fit-content;
  }
}

@oleksandrzaiats
Copy link

I also have same problems with footer in IE so it would be nice to have this fixed.

@jacekkarczmarczyk
Copy link
Member

Duplicate of #9527

@jacekkarczmarczyk jacekkarczmarczyk marked this as a duplicate of #9527 Dec 4, 2019
@jacekkarczmarczyk jacekkarczmarczyk added duplicate The issue has already been reported and removed platform specific The issue only occurs on a specific platform S: triage labels Dec 4, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VDataTable VDatatable duplicate The issue has already been reported
Projects
None yet
Development

No branches or pull requests

3 participants