changed to v-show for list item vis
This commit is contained in:
parent
2cccb3185f
commit
38714e0440
2 changed files with 2 additions and 2 deletions
|
@ -2051,7 +2051,7 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
|
||||||
|
|
||||||
// screen size > 1200px
|
// screen size > 1200px
|
||||||
@media screen and (min-width: 1500px) {
|
@media screen and (min-width: 1500px) {
|
||||||
grid-template-columns: repeat(6, minmax(200px, 1fr));
|
grid-template-columns: repeat(5, minmax(200px, 1fr));
|
||||||
}
|
}
|
||||||
// less than 1100px
|
// less than 1100px
|
||||||
@media screen and (max-width: 1150px) {
|
@media screen and (max-width: 1150px) {
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
@controller-click="route()"
|
@controller-click="route()"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
:class="[{'mediaitem-selected': app.select_hasMediaItem(guid)}, addClasses]">
|
:class="[{'mediaitem-selected': app.select_hasMediaItem(guid)}, addClasses]">
|
||||||
<div v-if="isVisible" class="listitem-content">
|
<div v-show="isVisible" class="listitem-content">
|
||||||
<div class="popular" v-if="!showInLibrary && item?.meta?.popularity != null && item?.meta?.popularity > 0.7"></div>
|
<div class="popular" v-if="!showInLibrary && item?.meta?.popularity != null && item?.meta?.popularity > 0.7"></div>
|
||||||
<div class="isLibrary" v-if="showLibraryStatus == true">
|
<div class="isLibrary" v-if="showLibraryStatus == true">
|
||||||
<div v-if="showInLibrary" :style="{display: (showInLibrary ? 'block' : 'none'), 'margin-left':'11px'}">
|
<div v-if="showInLibrary" :style="{display: (showInLibrary ? 'block' : 'none'), 'margin-left':'11px'}">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue