Browse Source

Added basic verified song badge

Owen Diffey 4 năm trước cách đây
mục cha
commit
565d00fa7f

+ 6 - 0
frontend/src/App.vue

@@ -555,6 +555,12 @@ button.delete:focus {
 	font-size: 18px;
 }
 
+.verified-song {
+	font-size: 22px;
+	color: var(--primary-color);
+	vertical-align: top;
+}
+
 .section-title,
 h4.section-title {
 	font-size: 26px;

+ 7 - 0
frontend/src/components/modals/EditPlaylist/components/PlaylistSongItem.vue

@@ -15,6 +15,13 @@
 			<div id="song-info">
 				<h4 class="item-title" :title="song.title">
 					{{ song.title }}
+					<i
+						v-if="song.verified"
+						class="material-icons verified-song"
+						title="Verified Song"
+					>
+						check_circle
+					</i>
 				</h4>
 				<h5
 					class="item-description"

+ 7 - 0
frontend/src/pages/Station/components/CurrentlyPlaying.vue

@@ -29,6 +29,13 @@
 					:title="song.title"
 				>
 					{{ song.title }}
+					<i
+						v-if="song.verified"
+						class="material-icons verified-song"
+						title="Verified Song"
+					>
+						check_circle
+					</i>
 				</h4>
 				<h5
 					id="song-artists"

+ 7 - 0
frontend/src/pages/Station/components/Sidebar/Queue/QueueItem.vue

@@ -15,6 +15,13 @@
 					:title="song.title"
 				>
 					{{ song.title }}
+					<i
+						v-if="song.verified"
+						class="material-icons verified-song"
+						title="Verified Song"
+					>
+						check_circle
+					</i>
 				</h4>
 				<h5
 					class="item-description"