Skip to content

Commit

Permalink
Add: お気に入り・プレイリストの表示を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Nov 13, 2022
1 parent 51cd6fd commit 821823e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/miniplayer/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ window.electron.receive("set-rotating", (value: boolean) => {
}"
/>
<template v-if="windowType === 'info'">
<div id="info" @click="openNico">
<div id="info" :data-reason="info.reason" @click="openNico">
<div id="info-top">
<div id="title" ref="titleEl">
<div ref="titleContentEl">
Expand Down Expand Up @@ -297,6 +297,15 @@ body {
&:hover {
background: rgba(0, 0, 0, 1);
}
&[data-reason="priority_playlist"] {
color: #00feff;
}
&[data-reason="favorite"] {
color: #ff33aa;
}
&[data-reason="playlist"] {
color: #10d300;
}
}
.control-button {
width: 110px;
Expand Down

0 comments on commit 821823e

Please sign in to comment.