File size: 970 Bytes
92cd965
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// fix position of sliders
//

//
// UI
//
onUiUpdate(function () {
    // check Extension loaded
    if (gradioApp().querySelector("div#tab_mbw_each") == null ) return;

    // check already done
    //if (gradioApp().querySelector("#div_mdl_size_a") != null) return;

    // apply
    let _style = "min-width: min(200px, 100%); flex-grow: 1";
    gradioApp().querySelector("#sl_IN_A_00").parentElement.parentElement.setAttribute("style", _style)
    gradioApp().querySelector("#sl_IN_B_00").parentElement.parentElement.setAttribute("style", _style)
    gradioApp().querySelector("#sl_M_A_00").parentElement.parentElement.setAttribute("style", _style)
    gradioApp().querySelector("#sl_M_B_00").parentElement.parentElement.setAttribute("style", _style)
    gradioApp().querySelector("#sl_OUT_A_00").parentElement.parentElement.setAttribute("style", _style)
    gradioApp().querySelector("#sl_OUT_B_00").parentElement.parentElement.setAttribute("style", _style)
});