mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
normalize rating to fsk
This commit is contained in:
parent
1f57d9b231
commit
2971ec0e69
86 changed files with 388 additions and 136 deletions
|
@ -6,10 +6,15 @@
|
|||
z-index: 1;
|
||||
bottom: 0;
|
||||
transition: transform 180ms linear;
|
||||
|
||||
contain: layout style;
|
||||
}
|
||||
|
||||
.appfooter.headroom--unpinned {
|
||||
transform: translateY(100%);
|
||||
}
|
||||
.appfooter-blurred {
|
||||
background: rgba(28,28,28,.92);
|
||||
-webkit-backdrop-filter: blur(5px);
|
||||
backdrop-filter: blur(5px);
|
||||
}
|
||||
|
||||
.appfooter.headroom--unpinned {
|
||||
transform: translateY(100%);
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
define(['css!./appfooter'], function () {
|
||||
define(['browser', 'css!./appfooter'], function (browser) {
|
||||
|
||||
function render(options) {
|
||||
|
||||
|
@ -6,6 +6,10 @@
|
|||
|
||||
elem.classList.add('appfooter');
|
||||
|
||||
if (browser.safari) {
|
||||
elem.classList.add('appfooter-blurred');
|
||||
}
|
||||
|
||||
document.body.appendChild(elem);
|
||||
|
||||
return elem;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue