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);
|
transition: opacity 0.1s var(--appleEase);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.animated .artist-header .more-btn-round {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 22px !important;
|
||||||
|
right: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
.artist-header {
|
.artist-header {
|
||||||
//background: linear-gradient(45deg, var(--keyColor), #0e0e0e);
|
//background: linear-gradient(45deg, var(--keyColor), #0e0e0e);
|
||||||
color: white;
|
color: white;
|
||||||
|
@ -3083,6 +3089,7 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.artworkContainer {
|
.artworkContainer {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
@ -3107,7 +3114,7 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
|
||||||
|
|
||||||
.more-btn-round {
|
.more-btn-round {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 84px;
|
bottom: 82px;
|
||||||
right: 28px;
|
right: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3200,8 +3207,6 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.artist-title {
|
.artist-title {
|
||||||
position: relative;
|
|
||||||
top: -19px;
|
|
||||||
|
|
||||||
.artist-play {
|
.artist-play {
|
||||||
transform: translateY(3px);
|
transform: translateY(3px);
|
||||||
|
@ -3224,7 +3229,12 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
|
||||||
|
|
||||||
.artist-body {
|
.artist-body {
|
||||||
padding: 0px var(--contentInnerPadding) 0px var(--contentInnerPadding);
|
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 {
|
.showmoreless {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script type="text/x-template" id="cider-artist">
|
<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}">
|
<div class="artist-header" :key="data.id" v-observe-visibility="{callback: isHeaderVisible}">
|
||||||
<animatedartwork-view
|
<animatedartwork-view
|
||||||
:priority="true"
|
:priority="true"
|
||||||
|
@ -73,7 +73,7 @@
|
||||||
<h3>Top Songs</h3>
|
<h3>Top Songs</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-auto flex-center" v-if="data.views['top-songs'].data.length >= 10" style="padding:0;">
|
<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>
|
||||||
</div>
|
</div>
|
||||||
<mediaitem-list-item
|
<mediaitem-list-item
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
</h3>
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-auto flex-center" v-if="data.views[view].data.length >= 10">
|
<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>
|
||||||
</div>
|
</div>
|
||||||
<template v-if="!((data.views[view].attributes.title ?
|
<template v-if="!((data.views[view].attributes.title ?
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue