Merge branch '65-truncated-play' into 'develop'

Fixed #65: truncated play icon

Closes #65

See merge request funkwhale/funkwhale!58
merge-requests/154/head
Eliot Berriot 2018-02-26 20:35:52 +00:00
commit 8457e6b3a8
2 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -9,6 +9,7 @@ Changelog
- Fixed really small size on small screens
- Added masonry layout for artists, requests and radios (#68)
- We now have a favicon!
- Fixed truncated play icon (#65)
0.5.1 (2018-02-24)

Wyświetl plik

@ -17,7 +17,7 @@
<table class="ui very basic fixed single line compact unstackable table">
<tbody>
<tr v-for="track in tracks">
<td>
<td class="play-cell">
<play-button class="basic icon" :track="track" :discrete="true"></play-button>
</td>
<td colspan="6">
@ -85,6 +85,9 @@ export default {
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped lang="scss">
table.fixed td.play-cell {
overflow: auto;
}
tr {
.favorite-icon:not(.favorited) {
display: none;