mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 17:52:21 +01:00
Fix streepje from issue #48
This commit is contained in:
@ -86,7 +86,7 @@ footer {
|
||||
border-top: 3px double var(--text-color);
|
||||
}
|
||||
|
||||
tr.requested_song{
|
||||
.ownsong {
|
||||
border-left: 1px solid var(--text-color);
|
||||
}
|
||||
|
||||
|
||||
@ -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>
|
||||
|
||||
Reference in New Issue
Block a user