test
This commit is contained in:
parent
5aa2e2bb93
commit
44eef28a5b
2 changed files with 6 additions and 4 deletions
|
@ -700,6 +700,10 @@
|
||||||
flex-shrink : unset;
|
flex-shrink : unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.search-input::placeholder {
|
||||||
|
color: var(--heroplaceholdercolor)
|
||||||
|
}
|
||||||
|
|
||||||
.nameEdit {
|
.nameEdit {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size : 1.6rem;
|
font-size : 1.6rem;
|
||||||
|
|
|
@ -13,10 +13,7 @@
|
||||||
<div class="playlistInfo">
|
<div class="playlistInfo">
|
||||||
<div class="playlist-hero" v-if="hasHero()">
|
<div class="playlist-hero" v-if="hasHero()">
|
||||||
<mediaitem-artwork shadow="none" :url="hasHero()" size="2160" />
|
<mediaitem-artwork shadow="none" :url="hasHero()" size="2160" />
|
||||||
<div class="hero-tint" :style="{ 'position':'absolute', 'top' : '0',
|
<div class="hero-tint" :style="{'background-color': '#' + hasHeroObject()?.bgColor ?? ''}"></div>
|
||||||
'background-color': '#' + hasHeroObject()?.bgColor ?? '' , // 50%
|
|
||||||
'opacity': '0.6',
|
|
||||||
'width':'100%', 'height':'100%'}"></div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-auto flex-center" @mouseover="minClass(false)">
|
<div class="col-auto flex-center" @mouseover="minClass(false)">
|
||||||
|
@ -117,6 +114,7 @@
|
||||||
spellcheck="false"
|
spellcheck="false"
|
||||||
:placeholder="$root.getLz('term.search') + '...'"
|
:placeholder="$root.getLz('term.search') + '...'"
|
||||||
@input="search()"
|
@input="search()"
|
||||||
|
:style="{ '--heroplaceholdercolor': '#' +hasHeroObject()?.textColor4 ?? ''}"
|
||||||
v-model="searchQuery"
|
v-model="searchQuery"
|
||||||
class="search-input">
|
class="search-input">
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue