Modals dashboard view fix
This commit is contained in:
parent
7a2cb912b2
commit
05c2232daa
|
@ -412,7 +412,6 @@ function initialiceLayout(data) {
|
|||
widgetId: widgetId
|
||||
},
|
||||
width: size.width,
|
||||
maxHeight: size.height,
|
||||
minHeight: size.height
|
||||
},
|
||||
onsubmit: {
|
||||
|
|
|
@ -10591,7 +10591,7 @@ tr.bring_next_field {
|
|||
vertical-align: middle;
|
||||
text-align: left;
|
||||
min-width: 150px !important;
|
||||
z-index: 60;
|
||||
z-index: 1115;
|
||||
}
|
||||
|
||||
.select2-container .select2-selection--single,
|
||||
|
@ -11268,3 +11268,6 @@ form#satellite_conf_edit > fieldset.full-column {
|
|||
background-size: 24px;
|
||||
background-image: url("../../images/enable.svg");
|
||||
}
|
||||
div[role="dialog"] {
|
||||
z-index: 1115;
|
||||
}
|
||||
|
|
|
@ -217,7 +217,7 @@ if ($writeDashboards === 1) {
|
|||
$text = __('Create a new 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(
|
||||
[
|
||||
'title' => $text,
|
||||
|
@ -236,7 +236,7 @@ if ($writeDashboards === 1) {
|
|||
'class="sub next"',
|
||||
true
|
||||
);
|
||||
$output .= '</a>';
|
||||
$output .= '</div>';
|
||||
|
||||
echo $output;
|
||||
|
||||
|
|
Loading…
Reference in New Issue