diff --git a/src/renderer/index.js b/src/renderer/index.js index 7623d4b2..4393c982 100644 --- a/src/renderer/index.js +++ b/src/renderer/index.js @@ -599,7 +599,7 @@ const app = new Vue({ app.getCurrentArtURL(); app.getNowPlayingArtwork(42); app.getNowPlayingArtworkBG(32); - app.loadLyrics() + app.loadLyrics(); // Playback Notifications if ((app.platform === "darwin" || app.platform === "linux") && !document.hasFocus() && a.artistName && a.artwork && a.name) { diff --git a/src/renderer/style.less b/src/renderer/style.less index 8e8e8d9e..096569f5 100644 --- a/src/renderer/style.less +++ b/src/renderer/style.less @@ -3567,23 +3567,74 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb { flex-grow: 1; } + .playback-button--small.active { + background-color: rgba(200, 200, 200, 0.1); + } + .right-col{ height: 50vh; } .lyrics-col{ - margin-top: 25vh; + width: 60vh; height: 50vh; - ::-webkit-scrollbar { - display: none; + ::-webkit-scrollbar-thumb { + box-shadow: unset; } - &:hover ::-webkit-scrollbar { - display: unset; + &:hover ::-webkit-scrollbar-thumb { + box-shadow: inset 0px 0px 10px 10px rgb(200 200 200 / 50%); } - } + } + + .queue-col{ + + width: 60vh; + height: 50vh; + + ::-webkit-scrollbar-thumb { + box-shadow: unset; + } + + &:hover ::-webkit-scrollbar-thumb { + box-shadow: inset 0px 0px 10px 10px rgb(200 200 200 / 50%); + } + } + + .tab-toggles{ + display: flex; + position: absolute; + bottom: 0; + right: 0; + width: 15vh; + height: 5vh; + justify-content: space-evenly; + + .queue { + background-image: url("./assets/list.svg") ; + padding: 0.5vh; + width: 2.5vh; + height: 2.5vh; + background-origin: content-box; + background-repeat: no-repeat; + } + + .lyrics { + background-image: url("./assets/quote-right.svg") ; + padding: 0.5vh; + width: 2.5vh; + height: 2.5vh; + background-origin: content-box; + background-repeat: no-repeat; + } + + .active { + background-color: rgba(200, 200, 200, 0.7); + border-radius: 3px; + } + } .artwork-col { justify-content: center; diff --git a/src/renderer/views/components/fullscreen.ejs b/src/renderer/views/components/fullscreen.ejs index 93122200..3bff659e 100644 --- a/src/renderer/views/components/fullscreen.ejs +++ b/src/renderer/views/components/fullscreen.ejs @@ -79,15 +79,23 @@