Fix #531: Add dropdown menu to album page

This commit is contained in:
Rodrigo Leite 2019-08-19 11:19:10 +02:00 committed by Eliot Berriot
parent 6bc02ce607
commit 2f0fe545d0
4 changed files with 11 additions and 5 deletions

View File

@ -0,0 +1 @@
Add dropdown menu to track table (#531)

View File

@ -42,6 +42,13 @@
</td>
<td colspan="2" class="align right">
<track-favorite-icon class="favorite-icon" :track="track"></track-favorite-icon>
<play-button
class="play-button basic icon"
:dropdown-only="true"
:is-playable="track.is_playable"
:dropdown-icon-classes="['ellipsis', 'vertical', 'large', 'grey']"
:track="track"
></play-button>
<track-playlist-icon
v-if="$store.state.auth.authenticated"
:track="track"></track-playlist-icon>

View File

@ -85,4 +85,7 @@ tr:not(:hover) .favorite-icon:not(.favorited) {
pre {
overflow-x: scroll;
}
.table-wrapper {
overflow: visible;
}
</style>

View File

@ -364,11 +364,6 @@ input + .help {
margin-top: 0.5em;
}
.table td .ui.dropdown {
min-width: 150px;
}
.tag-list {
margin-top: 0.5em;
}