fix artist view
This commit is contained in:
parent
72257a6837
commit
aba91e52f1
2 changed files with 17 additions and 7 deletions
|
@ -3070,6 +3070,12 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
|
|||
transition: opacity 0.1s var(--appleEase);
|
||||
}
|
||||
|
||||
&.animated .artist-header .more-btn-round {
|
||||
position: absolute;
|
||||
bottom: 22px !important;
|
||||
right: 28px;
|
||||
}
|
||||
|
||||
.artist-header {
|
||||
//background: linear-gradient(45deg, var(--keyColor), #0e0e0e);
|
||||
color: white;
|
||||
|
@ -3083,6 +3089,7 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
|
|||
z-index: 1;
|
||||
}
|
||||
|
||||
|
||||
.artworkContainer {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
|
@ -3107,7 +3114,7 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
|
|||
|
||||
.more-btn-round {
|
||||
position: absolute;
|
||||
bottom: 84px;
|
||||
bottom: 82px;
|
||||
right: 28px;
|
||||
}
|
||||
|
||||
|
@ -3200,8 +3207,6 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
|
|||
}
|
||||
}
|
||||
.artist-title {
|
||||
position: relative;
|
||||
top: -19px;
|
||||
|
||||
.artist-play {
|
||||
transform: translateY(3px);
|
||||
|
@ -3224,7 +3229,12 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
|
|||
|
||||
.artist-body {
|
||||
padding: 0px var(--contentInnerPadding) 0px var(--contentInnerPadding);
|
||||
margin-top: -137px;
|
||||
margin-top: -140px;
|
||||
}
|
||||
|
||||
&.animated > .artist-body {
|
||||
padding: 0px var(--contentInnerPadding) 0px var(--contentInnerPadding);
|
||||
margin-top: -57px;
|
||||
}
|
||||
|
||||
.showmoreless {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script type="text/x-template" id="cider-artist">
|
||||
<div class="content-inner artist-page">
|
||||
<div class="content-inner artist-page" :class="[data.attributes.editorialVideo && (data.attributes.editorialVideo.motionArtistWide16x9 || data.attributes.editorialVideo.motionArtistFullscreen16x9) ? 'animated' : '']">
|
||||
<div class="artist-header" :key="data.id" v-observe-visibility="{callback: isHeaderVisible}">
|
||||
<animatedartwork-view
|
||||
:priority="true"
|
||||
|
@ -73,7 +73,7 @@
|
|||
<h3>Top Songs</h3>
|
||||
</div>
|
||||
<div class="col-auto flex-center" v-if="data.views['top-songs'].data.length >= 10" style="padding:0;">
|
||||
<button class="cd-btn-seeall" @click="app.showArtistView(data.id, data.attributes.name + ' - Top Songs', 'top-songs')">See All</button>
|
||||
<button class="cd-btn-seeall" @click="app.showArtistView(data.id, data.attributes.name + ' - Top Songs', 'top-songs')">{{app.getLz('term.seeAll')}}</button>
|
||||
</div>
|
||||
</div>
|
||||
<mediaitem-list-item
|
||||
|
@ -104,7 +104,7 @@
|
|||
</h3>
|
||||
</div>
|
||||
<div class="col-auto flex-center" v-if="data.views[view].data.length >= 10">
|
||||
<button class="cd-btn-seeall" @click="app.showArtistView(data.id, data.attributes.name + ' - ' + data.views[view].attributes.title, view)">See All</button>
|
||||
<button class="cd-btn-seeall" @click="app.showArtistView(data.id, data.attributes.name + ' - ' + data.views[view].attributes.title, view)">{{app.getLz('term.seeAll')}}</button>
|
||||
</div>
|
||||
</div>
|
||||
<template v-if="!((data.views[view].attributes.title ?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue