10488-Fix views reports

This commit is contained in:
Pablo Aragon 2023-02-22 10:35:33 +01:00
commit e7d6afd636
5 changed files with 12 additions and 10 deletions

View File

@ -343,7 +343,7 @@ function ui_print_message($message, $class='', $attributes='', $return=false, $t
[ [
'href' => 'javascript: close_info_box(\''.$id.'\')', 'href' => 'javascript: close_info_box(\''.$id.'\')',
'content' => html_print_image( 'content' => html_print_image(
'images/svg/fail.svg', 'images/close@svg.svg',
true, true,
false, false,
false, false,

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

@ -6503,7 +6503,7 @@ form#modal_form_feedback label {
font-size: 10pt; font-size: 10pt;
} }
form#modal_form_feedback input[type="email"] { /*form#modal_form_feedback input[type="email"] {
background-color: transparent; background-color: transparent;
border: none; border: none;
border-radius: 0; border-radius: 0;
@ -6511,7 +6511,7 @@ form#modal_form_feedback input[type="email"] {
padding: 0px 0px 2px 0px; padding: 0px 0px 2px 0px;
box-sizing: border-box; box-sizing: border-box;
margin-bottom: 4px; margin-bottom: 4px;
} }*/
form#modal_form_feedback ul.wizard li { form#modal_form_feedback ul.wizard li {
padding-bottom: 10px; padding-bottom: 10px;
@ -10591,7 +10591,6 @@ 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;
} }
.select2-container .select2-selection--single, .select2-container .select2-selection--single,
@ -11278,3 +11277,7 @@ form#satellite_conf_edit > fieldset.full-column {
#textarea_footer_tbl { #textarea_footer_tbl {
width: 80% !important; width: 80% !important;
} }
div[role="dialog"] {
z-index: 1115;
}

View File

@ -71,7 +71,7 @@
position: absolute; position: absolute;
left: -100000px; left: -100000px;
width: 100%; width: 100%;
z-index: 999; z-index: 1115;
} }
.select2-results { .select2-results {
display: block; display: block;
@ -265,8 +265,8 @@
cursor: default; cursor: default;
float: left; float: left;
margin-right: 3px; margin-right: 3px;
margin-top: 2px; margin-top: 2px;
height: 17px; height: 17px;
padding: 0 5px; padding: 0 5px;
} }
.select2-container--default .select2-container--default

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;