We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28c7e52 commit bdae7adCopy full SHA for bdae7ad
src/components/mdMenu/mdMenu.theme
@@ -1,5 +1,5 @@
1
.THEME_NAME {
2
- &.md-menu-content {
+ &.md-menu-content .md-list {
3
background-color: #{'BACKGROUND-COLOR'};
4
color: #{'BACKGROUND-CONTRAST'};
5
src/components/mdMenu/mdMenuContent.vue
@@ -1,7 +1,6 @@
<template>
<div
class="md-menu-content"
- :class="[themeClass]"
@keydown.esc.prevent="close"
6
@keydown.tab.prevent="close"
7
@keydown.up.prevent="highlightItem('up')"
@@ -16,8 +15,6 @@
16
15
</template>
17
18
<script>
19
- import theme from '../../core/components/mdTheme/mixin';
20
-
21
export default {
22
data() {
23
return {
@@ -26,7 +23,6 @@
26
itemsAmount: 0
27
24
};
28
25
},
29
- mixins: [theme],
30
methods: {
31
close() {
32
this.highlighted = false;
0 commit comments