Fix #531: Add dropdown menu to album page
This commit is contained in:
parent
6bc02ce607
commit
2f0fe545d0
|
@ -0,0 +1 @@
|
|||
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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue