Modals dashboard view fix

This commit is contained in:
Jonathan 2023-02-21 17:07:03 +01:00
parent 7a2cb912b2
commit 05c2232daa
3 changed files with 6 additions and 4 deletions

View File

@ -412,7 +412,6 @@ function initialiceLayout(data) {
widgetId: widgetId widgetId: widgetId
}, },
width: size.width, width: size.width,
maxHeight: size.height,
minHeight: size.height minHeight: size.height
}, },
onsubmit: { onsubmit: {

View File

@ -10591,7 +10591,7 @@ tr.bring_next_field {
vertical-align: middle; vertical-align: middle;
text-align: left; text-align: left;
min-width: 150px !important; min-width: 150px !important;
z-index: 60; z-index: 1115;
} }
.select2-container .select2-selection--single, .select2-container .select2-selection--single,
@ -11268,3 +11268,6 @@ form#satellite_conf_edit > fieldset.full-column {
background-size: 24px; background-size: 24px;
background-image: url("../../images/enable.svg"); background-image: url("../../images/enable.svg");
} }
div[role="dialog"] {
z-index: 1115;
}

View File

@ -217,7 +217,7 @@ if ($writeDashboards === 1) {
$text = __('Create a new dashboard'); $text = __('Create a new dashboard');
// Button for display modal options dashboard. // Button for display modal options dashboard.
$output = '<a href="#" class="float-right" onclick=\''; $output = '<div class="action-buttons" onclick=\'';
$output .= 'show_option_dialog('.json_encode( $output .= 'show_option_dialog('.json_encode(
[ [
'title' => $text, 'title' => $text,
@ -236,7 +236,7 @@ if ($writeDashboards === 1) {
'class="sub next"', 'class="sub next"',
true true
); );
$output .= '</a>'; $output .= '</div>';
echo $output; echo $output;