Visual minor fix

This commit is contained in:
Jonathan 2023-03-17 08:53:58 +01:00
parent 8e723685b1
commit c219ad91c7
2 changed files with 6 additions and 0 deletions

View File

@ -133,6 +133,7 @@ $table->data[1][1] = '<a href="javascript:">'.html_print_image(
'id' => 'right', 'id' => 'right',
'title' => __('Add fields to select'), 'title' => __('Add fields to select'),
'style' => 'rotate: 180deg;', 'style' => 'rotate: 180deg;',
'class' => 'main_menu_icon invert_filter',
] ]
).'</a>'; ).'</a>';
$table->data[1][1] .= '<br><br><br><br><a href="javascript:">'.html_print_image( $table->data[1][1] .= '<br><br><br><br><a href="javascript:">'.html_print_image(
@ -169,6 +170,7 @@ $table->data[1][2] .= '<a href="javascript:">'.html_print_image(
[ [
'onclick' => 'sortUpDown(\'up\');', 'onclick' => 'sortUpDown(\'up\');',
'title' => __('Move up selected fields'), 'title' => __('Move up selected fields'),
'class' => 'main_menu_icon invert_filter',
] ]
).'</a>'; ).'</a>';
$table->data[1][2] .= '<a href="javascript:">'.html_print_image( $table->data[1][2] .= '<a href="javascript:">'.html_print_image(
@ -177,6 +179,7 @@ $table->data[1][2] .= '<a href="javascript:">'.html_print_image(
[ [
'onclick' => 'sortUpDown(\'down\');', 'onclick' => 'sortUpDown(\'down\');',
'title' => __('Move down selected fields'), 'title' => __('Move down selected fields'),
'class' => 'main_menu_icon invert_filter',
] ]
).'</a>'; ).'</a>';
$table->data[1][2] .= '</div></div>'; $table->data[1][2] .= '</div></div>';

View File

@ -972,6 +972,9 @@ function openSoundEventModal(settings) {
width: 600, width: 600,
height: 600, height: 600,
open: function() { open: function() {
$(".ui-widget-overlay")
.css("background", "black")
.css("opacity", 0.5);
$.ajax({ $.ajax({
method: "post", method: "post",
url: settings.url, url: settings.url,