Fix streepje from issue #48

This commit is contained in:
William Kuijltjes
2024-02-27 12:59:21 +01:00
committed by Kees van Kempen
parent 13448a2eec
commit e45940772f
2 changed files with 4 additions and 2 deletions

View File

@ -86,7 +86,7 @@ footer {
border-top: 3px double var(--text-color);
}
tr.requested_song{
.ownsong {
border-left: 1px solid var(--text-color);
}

View File

@ -92,7 +92,9 @@
<template v-for="(song, index) in queue">
<tr :class="{ marietjequeue: (song.user === null),
underline_cell: (index === queue[-1]),
currentsong: (index === 0),}"
currentsong: (index === 0),
ownsong: (this.user_data.id === song.user?.id && index !== 0),
}"
v-on:click="toggle_details(song)">
<td>
<span class="artist">${ song.song.artist }$</span>