13539-Fix z-index tree view modal

This commit is contained in:
Pablo Aragon 2024-04-25 13:27:27 +02:00
parent c1c07d38a8
commit 25063841e2
2 changed files with 9 additions and 0 deletions

View File

@ -625,6 +625,10 @@ var TreeController = {
$("#fixed-bottom-box-head-title").html(
$("#fixedBottomHeadTitle").html()
);
$("#fixed-bottom-box-head-title")
.closest(".fixed-bottom-box")
.addClass("tree-view-bottom-modal");
},
error: function(xhr, textStatus, errorThrown) {
callback(errorThrown);

View File

@ -14272,3 +14272,8 @@ table.filter-table-adv td > div.row-flex label.custom_checkbox {
table.filter-table-adv td > div.row-flex input {
width: 100%;
}
div.fixed-bottom-box.tree-view-bottom-modal {
z-index: 1;
border: 1px solid var(--border-color);
}