Merge branch '531.add.track.dropdown' into 'develop'
Add dropdown menu to album page Closes #531 See merge request funkwhale/funkwhale!852
This commit is contained in:
commit
a01d7a4efa
|
@ -0,0 +1 @@
|
||||||
|
Add dropdown menu to track table (#531)
|
|
@ -42,6 +42,13 @@
|
||||||
</td>
|
</td>
|
||||||
<td colspan="2" class="align right">
|
<td colspan="2" class="align right">
|
||||||
<track-favorite-icon class="favorite-icon" :track="track"></track-favorite-icon>
|
<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
|
<track-playlist-icon
|
||||||
v-if="$store.state.auth.authenticated"
|
v-if="$store.state.auth.authenticated"
|
||||||
:track="track"></track-playlist-icon>
|
:track="track"></track-playlist-icon>
|
||||||
|
|
|
@ -85,4 +85,7 @@ tr:not(:hover) .favorite-icon:not(.favorited) {
|
||||||
pre {
|
pre {
|
||||||
overflow-x: scroll;
|
overflow-x: scroll;
|
||||||
}
|
}
|
||||||
|
.table-wrapper {
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -364,11 +364,6 @@ input + .help {
|
||||||
margin-top: 0.5em;
|
margin-top: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table td .ui.dropdown {
|
|
||||||
min-width: 150px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.tag-list {
|
.tag-list {
|
||||||
margin-top: 0.5em;
|
margin-top: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue