Merge branch 'main' of https://github.com/ciderapp/Cider
This commit is contained in:
commit
6e438c7eb7
17 changed files with 143 additions and 26 deletions
|
@ -254,6 +254,9 @@
|
|||
height: 32px;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
.cd-queue-item:hover {
|
||||
background: var(--selected);
|
||||
}
|
||||
.cd-queue-item.selected {
|
||||
background: var(--selected);
|
||||
}
|
||||
|
|
|
@ -306,6 +306,10 @@
|
|||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: var(--selected);
|
||||
}
|
||||
|
||||
&.selected {
|
||||
background: var(--selected);
|
||||
}
|
||||
|
|
|
@ -2184,6 +2184,13 @@ const app = new Vue({
|
|||
sortArtists()
|
||||
}
|
||||
},
|
||||
focusSearch() {
|
||||
app.appRoute('search')
|
||||
const search = document.getElementsByClassName("search-input")
|
||||
if (search.length > 0) {
|
||||
search[0].focus()
|
||||
}
|
||||
},
|
||||
getSidebarItemClass(page) {
|
||||
if (this.page == page) {
|
||||
return ["active"]
|
||||
|
|
|
@ -1605,6 +1605,7 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
|
|||
margin: 10px;
|
||||
margin-left: 5%;
|
||||
margin-right: 0px;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.lyric-line.active .verse {
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
</div>
|
||||
<div class="col queue-info">
|
||||
<div class="queue-title text-overflow-elipsis">{{ queueItem.item.attributes.name }}</div>
|
||||
<div class="queue-subtitle text-overflow-elipsis">{{ queueItem.item.attributes.albumName }} — {{ queueItem.item.attributes.artistName }}</div>
|
||||
<div class="queue-subtitle text-overflow-elipsis">{{ queueItem.item.attributes.artistName }} — {{ queueItem.item.attributes.albumName }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue