fixes for dev mode
This commit is contained in:
parent
f9739f7d24
commit
fc8c71e1c7
4 changed files with 17 additions and 3 deletions
|
@ -3183,6 +3183,13 @@ body.no-gpu {
|
||||||
background: rgb(0 0 0);
|
background: rgb(0 0 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.addtoplaylist-panel {
|
||||||
|
.modal-window {
|
||||||
|
background: rgb(18 18 18);
|
||||||
|
backdrop-filter: unset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.app-drawer {
|
.app-drawer {
|
||||||
backdrop-filter: unset;
|
backdrop-filter: unset;
|
||||||
mix-blend-mode: unset;
|
mix-blend-mode: unset;
|
||||||
|
|
|
@ -30,7 +30,8 @@
|
||||||
props: ["recom"],
|
props: ["recom"],
|
||||||
data: function () {
|
data: function () {
|
||||||
return {
|
return {
|
||||||
isVisible: true
|
isVisible: true,
|
||||||
|
app: this.$root
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
@ -32,6 +32,11 @@
|
||||||
<script>
|
<script>
|
||||||
Vue.component('cider-applecurator', {
|
Vue.component('cider-applecurator', {
|
||||||
template: "#cider-applecurator",
|
template: "#cider-applecurator",
|
||||||
props: ["data"]
|
props: ["data"],
|
||||||
|
data: function() {
|
||||||
|
return {
|
||||||
|
app: this.$root
|
||||||
|
}
|
||||||
|
},
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
|
@ -72,7 +72,8 @@
|
||||||
props: ['data'],
|
props: ['data'],
|
||||||
data: function () {
|
data: function () {
|
||||||
return {
|
return {
|
||||||
topSongsExpanded: false
|
topSongsExpanded: false,
|
||||||
|
app: this.$root
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue