mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-03-31 21:30:31 +00:00
remove menu theming #253
This commit is contained in:
parent
e9c3783244
commit
9fa283d620
2 changed files with 1 additions and 5 deletions
|
|
@ -1,5 +1,5 @@
|
|||
.THEME_NAME {
|
||||
&.md-menu-content {
|
||||
&.md-menu-content .md-list {
|
||||
background-color: #{'BACKGROUND-COLOR'};
|
||||
color: #{'BACKGROUND-CONTRAST'};
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue