Vuetify: [Bug Report] Tabs overlapping fab

Created on 23 Apr 2018  路  7Comments  路  Source: vuetifyjs/vuetify

Versions and Environment

Vuetify: 1.0.16
Vue: 2.5.16
Browsers: Chrome 65.0.3325.181
OS: Windows 10

Steps to reproduce

Just watch the fab on the left. It's overlapped by the tabs. Even with z-index: 9999

Expected Behavior

Fab is above tab. (Or a workaround to do this)

Actual Behavior

Tabs are above fab. Even when playing with z-index.

Reproduction Link

https://codepen.io/anon/pen/ELPmmj

bug

Most helpful comment

So this is happening is because the .tabs_items div that wraps all the tab contents has an overflow: hidden set to it.

Not sure why it was done so not sure what it may break.

For now, you can set use the following as workaround.

Somewhere in your global css, add this

.tabs__items {
  overflow: visible;
}

All 7 comments

So this is happening is because the .tabs_items div that wraps all the tab contents has an overflow: hidden set to it.

Not sure why it was done so not sure what it may break.

For now, you can set use the following as workaround.

Somewhere in your global css, add this

.tabs__items {
  overflow: visible;
}

what it may break

It's hidden so the tab transition doesn't overflow.

I can't see a difference after removing the overflow. Any example where it's clearly visible?

https://vuetifyjs.com/en/components/tabs

Remove the overflow on .tabs__items and .component-example .application--example with devtools

Ah! I see! That's bad. Thanks! Thinking how we solve this without having to remove overflow: hidden from .tabs__items

With v1.1, workaround provided by @praveenpuglia becomes :

.v-tabs__items {
  overflow: visible;
}

I just checked this and it seems to be fixed with the latest vuetify. Closing this. Feel free to open if you see the issue pop up again.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

itanka9 picture itanka9  路  3Comments

alterhu2020 picture alterhu2020  路  3Comments

Antway picture Antway  路  3Comments

Webifi picture Webifi  路  3Comments

smousa picture smousa  路  3Comments