Vuetify: 1.2.4
Last working version: 1.2.3
Vue: 2.5.17
Browsers: Chrome 69.0.3497.100
OS: Windows 10
Open inline editing on a table
the dialog should not be transparent.
the dialog is transparent
https://codepen.io/anon/pen/QVYydj?&editors=101
if i use the dark theme, the dialog isnt transparent but the text is white
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!
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...
Most helpful comment
It worked after I took out the scoped keyword...
Looks like I need to go back to CSS coding school because I do not even know what I am doing...