File tree Expand file tree Collapse file tree 4 files changed +7
-12
lines changed
Expand file tree Collapse file tree 4 files changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -349,6 +349,7 @@ export default {
349349.link {
350350 margin-left : .75rem ;
351351 font-size : 1.2rem ;
352+ color : white ;
352353 img {
353354 height : 3rem ;
354355 }
Original file line number Diff line number Diff line change 1515 text-align : left ;
1616 }
1717 }
18+
1819 / deep/ .v-autocomplete :not (.v-input--is-disabled ).v-select.v-text-field input {
1920 color : white ;
2021 }
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ export default {
4444 height : 100% ;
4545 display : flex ;
4646 flex-direction : column ;
47- background : #0000 ;
47+ background : #0000 !important ;
4848}
4949.slot-shell {
5050 margin-top : 73px ;
Original file line number Diff line number Diff line change 176176import spaceLayout from ' @/components/Layout/Space'
177177import miniAvatar from ' @/components/User/MiniAvatar'
178178
179- import mp3 from ' @/assets/music/FlowerDance.mp3'
180- import album from ' @/assets/music/FlowerDance.jpg'
181179import api from ' @/api/api'
182180import decode from ' @/util/decode'
183181import { mapState } from ' vuex'
@@ -210,14 +208,6 @@ export default {
210208 owned: false ,
211209 showDialog: false ,
212210 loading: true ,
213- audioList: {
214- flowerdance: {
215- name: ' Flower Dance' ,
216- artist: ' DJ OKAWARI' ,
217- url: mp3,
218- cover: album
219- }
220- },
221211 users: [
222212 {
223213 avatar: ' https://picsum.photos/510/300?random'
@@ -375,7 +365,7 @@ export default {
375365 const reader = new FileReader ()
376366 reader .readAsArrayBuffer (new Blob ([music .data ], { type: music .type }))
377367 reader .onload = (event ) => {
378- const url = window .webkitURL .createObjectURL (new Blob ([event .target .result ]))
368+ const url = window .webkitURL .createObjectURL (new Blob ([event .target .result ], { type : music . type } ))
379369 resolve (url)
380370 }
381371 } catch (e) {
@@ -640,6 +630,9 @@ export default {
640630 color : white ;
641631 line-height : 20px ;
642632 margin : 8px 0 0 ;
633+ & :hover {
634+ color : #E56D9B ;
635+ }
643636 }
644637 }
645638
You can’t perform that action at this time.
0 commit comments