Vuetify: [Bug Report] edit-dialog in data table is transparent

Created on 20 Sep 2018  路  6Comments  路  Source: vuetifyjs/vuetify

Versions and Environment

Vuetify: 1.2.4
Last working version: 1.2.3
Vue: 2.5.17
Browsers: Chrome 69.0.3497.100
OS: Windows 10

Steps to reproduce

Open inline editing on a table

Expected Behavior

the dialog should not be transparent.

Actual Behavior

the dialog is transparent

Reproduction Link

https://codepen.io/anon/pen/QVYydj?&editors=101

Other comments

if i use the dark theme, the dialog isnt transparent but the text is white

has PR bug regression

Most helpful comment

It worked after I took out the scoped keyword...

<style lang="css" scoped>

Looks like I need to go back to CSS coding school because I do not even know what I am doing...

All 6 comments

Is there a temporary fix for this that we can implement? Had been playing around with the css but no result

Is there a temporary fix for this that we can implement? Had been playing around with the css but no result

Hey @ais-one, I was able to fix it doing this:

.theme--dark .v-menu__content {
  background-color: #424242;
}
.theme--light .v-menu__content {
  background-color: #ffffff;
}

Let me know if that works for you.

Is there a temporary fix for this that we can implement? Had been playing around with the css but no result

Hey @ais-one, I was able to fix it doing this:

.theme--dark .v-menu__content {
  background-color: #424242;
}
.theme--light .v-menu__content {
  background-color: #ffffff;
}

Let me know if that works for you.

It does not seem to work, where should I put the CSS code?

Currently...

<template>
  <v-data-table>
    ... many things here...
  </v-data-table>
</template>

<script>
</script>

<style scoped>
.theme--dark .v-menu__content {
  background-color: #424242;
}
.theme--light .v-menu__content {
  background-color: #ffffff;
}
</style>

Interesting, you solution does seem to work..., just not on my code.

Below is a codepen which shows it working!

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

It worked after I took out the scoped keyword...

<style lang="css" scoped>

Looks like I need to go back to CSS coding school because I do not even know what I am doing...

Was this page helpful?
0 / 5 - 0 ratings

Related issues

dohomi picture dohomi  路  3Comments

alterhu2020 picture alterhu2020  路  3Comments

dschreij picture dschreij  路  3Comments

cawa-93 picture cawa-93  路  3Comments

itanka9 picture itanka9  路  3Comments