This commit is contained in:
iFargle
2023-03-22 08:18:36 +09:00
parent a1816df58c
commit e1f31b71cc
2 changed files with 5 additions and 1 deletions

View File

@@ -71,4 +71,8 @@ display: none !important
.nav-search.show, .nav-content.show {
z-index: 1000;
visibility: visible;
}
.add_machine_selector_class {
position: absolute;
}

View File

@@ -578,7 +578,7 @@ function load_modal_add_machine() {
modal_body.innerHTML = select_html
// Initialize the form and the machine tabs
M.FormSelect.init(document.querySelectorAll('select'))
M.FormSelect.init(document.querySelectorAll('select'){classes='add_machine_selector_class'})
M.Tabs.init(document.getElementById('new_machine_tabs'));
}
})