mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix alpha picker moving when page scrolls
This commit is contained in:
parent
69a410794c
commit
113b487c37
2 changed files with 6 additions and 2 deletions
|
@ -315,7 +315,8 @@ iron-icon {
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
will-change: transform;
|
/* Can't use will-change because it causes the alpha picker to move when the page scrolls*/
|
||||||
|
/*will-change: transform;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Without this, no content will be displayed in mobile safari */
|
/* Without this, no content will be displayed in mobile safari */
|
||||||
|
|
|
@ -748,7 +748,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
document.querySelector('.libraryMenuButtonText').innerHTML = html;
|
var libraryMenuButtonText = document.querySelector('.libraryMenuButtonText');
|
||||||
|
if (libraryMenuButtonText) {
|
||||||
|
libraryMenuButtonText.innerHTML = html;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
setBackButtonVisible: function (visible) {
|
setBackButtonVisible: function (visible) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue