Skip to content
Snippets Groups Projects
Commit 2f0fe545 authored by Rodrigo Leite's avatar Rodrigo Leite Committed by Eliot Berriot
Browse files

Fix #531: Add dropdown menu to album page

parent 6bc02ce6
No related branches found
No related tags found
No related merge requests found
Add dropdown menu to track table (#531)
......@@ -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>
......
......@@ -85,4 +85,7 @@ tr:not(:hover) .favorite-icon:not(.favorited) {
pre {
overflow-x: scroll;
}
.table-wrapper {
overflow: visible;
}
</style>
......@@ -364,11 +364,6 @@ input + .help {
margin-top: 0.5em;
}
.table td .ui.dropdown {
min-width: 150px;
}
.tag-list {
margin-top: 0.5em;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment