mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
c7b2fa8dc1
commit
087c2139c6
17 changed files with 442 additions and 381 deletions
|
@ -23,6 +23,13 @@
|
|||
if (backgroundLower) {
|
||||
var fraction = (value - range.min) / (range.max - range.min);
|
||||
|
||||
if (browser.noFlex) {
|
||||
backgroundLower.style['-webkit-flex'] = fraction;
|
||||
backgroundUpper.style['-webkit-flex'] = 1 - fraction;
|
||||
backgroundLower.style['-webkit-box-flex'] = fraction;
|
||||
backgroundUpper.style['-webkit-box-flex'] = 1 - fraction;
|
||||
}
|
||||
|
||||
backgroundLower.style.flex = fraction;
|
||||
backgroundUpper.style.flex = 1 - fraction;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue