fix: disc color (#1114)

This commit is contained in:
memorydream
2021-12-21 10:12:06 +08:00
committed by GitHub
parent e9d9c3aee8
commit 47862d6710
2 changed files with 7 additions and 4 deletions

View File

@@ -43,7 +43,7 @@
<span v-if="isAlbum && track.mark === 1318912" class="explicit-symbol"
><ExplicitSymbol
/></span>
<span v-if="isSubTitle" :title="subTitle" class="subTitle">
<span v-if="isSubTitle" :title="subTitle" class="sub-title">
({{ subTitle }})
</span>
</div>
@@ -312,7 +312,7 @@ button {
font-size: 14px;
opacity: 0.72;
}
.subTitle {
.sub-title {
color: #aeaeae;
margin-left: 4px;
}
@@ -416,7 +416,7 @@ button {
.title,
.album,
.time,
.title-and-artist .subTitle {
.title-and-artist .sub-title {
color: var(--color-primary);
}
.title .featured,

View File

@@ -73,7 +73,7 @@
</div>
<div v-if="Object.keys(tracksByDisc).length !== 1">
<div v-for="(disc, cd) in tracksByDisc" :key="cd">
<h2>Disc {{ cd }}</h2>
<h2 class="disc">Disc {{ cd }}</h2>
<TrackList
:id="album.id"
:tracks="disc"
@@ -385,6 +385,9 @@ export default {
}
}
}
.disc {
color: var(--color-text);
}
.explicit-symbol {
opacity: 0.28;