kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
Merge branch '65-truncated-play' into 'develop'
Fixed #65: truncated play icon Closes #65 See merge request funkwhale/funkwhale!58merge-requests/154/head
commit
8457e6b3a8
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
|
Ładowanie…
Reference in New Issue