Merge branch 'select2/add' into 'master'

fixed device

See merge request fronk/thetool!1284
This commit is contained in:
Luca Haid
2025-04-30 10:30:51 +00:00
3 changed files with 17 additions and 2 deletions
+6 -1
View File
@@ -4,7 +4,11 @@
$pagination_entity_name = "Objekte & Anschlüsse"; $pagination_entity_name = "Objekte & Anschlüsse";
?> ?>
<?php include(realpath(dirname(__FILE__)."/../../$mfLayoutPackage")."/header.php"); ?> <?php include(realpath(dirname(__FILE__)."/../../$mfLayoutPackage")."/header.php"); ?>
<style>
.select2-selection {
min-height: calc(1.5em + .9rem + 2px);
}
</style>
<!-- start page title --> <!-- start page title -->
@@ -547,6 +551,7 @@
<?php if(is_array($filter) && count($filter)): ?> <?php if(is_array($filter) && count($filter)): ?>
//refreshMap(); //refreshMap();
<?php endif; ?> <?php endif; ?>
$("#filter_network_id").select2({closeOnSelect: false});
</script> </script>
+5 -1
View File
@@ -15,6 +15,10 @@
overflow: scroll; overflow: scroll;
} }
} }
.select2-selection {
min-height: calc(1.5em + .9rem + 2px);
}
</style> </style>
<!-- start page title --> <!-- start page title -->
@@ -838,7 +842,7 @@ function validateWorkflowItem(id) {
$('#export-button').click(exportButtonClick); $('#export-button').click(exportButtonClick);
$('#export-button-label').show(); $('#export-button-label').show();
} }
$("#filter_network_id").select2({closeOnSelect: false});
</script> </script>
+6
View File
@@ -11,6 +11,10 @@
.dropdown-menu.show { .dropdown-menu.show {
z-index: 9999999; z-index: 9999999;
} }
.select2-selection {
min-height: calc(1.5em + .9rem + 2px);
}
</style> </style>
<!-- start page title --> <!-- start page title -->
@@ -439,6 +443,8 @@ $('select[name=wfitem_pipework_finished]').each(function() {
$('#export-button').click(exportButtonClick); $('#export-button').click(exportButtonClick);
$('#export-button-label').show(); $('#export-button-label').show();
} }
$("#filter_network_id").select2({closeOnSelect: false});
</script> </script>