FIX: pinned items overflow
This commit is contained in:
parent
179e08c148
commit
d0627fc14c
2 changed files with 2 additions and 3 deletions
|
|
@ -515,7 +515,7 @@ export function initializeUIInteractions(player, api, ui) {
|
||||||
|
|
||||||
document.body.addEventListener('mouseover', (e) => {
|
document.body.addEventListener('mouseover', (e) => {
|
||||||
const selector =
|
const selector =
|
||||||
'.card-title, .card-subtitle, .track-item-details .title, .track-item-details .artist, .now-playing-bar .title, .now-playing-bar .artist, .now-playing-bar .album';
|
'.card-title, .card-subtitle, .track-item-details .title, .track-item-details .artist, .now-playing-bar .title, .now-playing-bar .artist, .now-playing-bar .album, .pinned-item-name';
|
||||||
const target = e.target.closest(selector);
|
const target = e.target.closest(selector);
|
||||||
|
|
||||||
if (target) {
|
if (target) {
|
||||||
|
|
|
||||||
|
|
@ -6444,11 +6444,10 @@ textarea:focus {
|
||||||
|
|
||||||
#pinned-items-nav {
|
#pinned-items-nav {
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
overflow-y: auto;
|
|
||||||
overflow-x: hidden;
|
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
|
overflow: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-nav-bottom {
|
.sidebar-nav-bottom {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue