remove menu theming #253

This commit is contained in:
Marcos Moura 2016-12-26 00:00:08 -02:00
parent e9c3783244
commit 9fa283d620
2 changed files with 1 additions and 5 deletions

View file

@ -1,5 +1,5 @@
.THEME_NAME {
&.md-menu-content {
&.md-menu-content .md-list {
background-color: #{'BACKGROUND-COLOR'};
color: #{'BACKGROUND-CONTRAST'};

View file

@ -1,7 +1,6 @@
<template>
<div
class="md-menu-content"
:class="[themeClass]"
@keydown.esc.prevent="close"
@keydown.tab.prevent="close"
@keydown.up.prevent="highlightItem('up')"
@ -16,8 +15,6 @@
</template>
<script>
import theme from '../../core/components/mdTheme/mixin';
export default {
data() {
return {
@ -26,7 +23,6 @@
itemsAmount: 0
};
},
mixins: [theme],
methods: {
close() {
this.highlighted = false;