mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
fixed styles
This commit is contained in:
parent
0203e5eba9
commit
0643b4e0ba
@ -1831,7 +1831,7 @@ class Diagnostics extends Wizard
|
|||||||
|
|
||||||
if ($items[$key]['status'] === 2) {
|
if ($items[$key]['status'] === 2) {
|
||||||
$items[$key]['value'] = html_print_image(
|
$items[$key]['value'] = html_print_image(
|
||||||
'images/icono-warning.png',
|
'images/alert-yellow@svg.svg',
|
||||||
true,
|
true,
|
||||||
[
|
[
|
||||||
'title' => __('Warning'),
|
'title' => __('Warning'),
|
||||||
@ -1840,7 +1840,7 @@ class Diagnostics extends Wizard
|
|||||||
);
|
);
|
||||||
} else if ($items[$key]['status'] === 1) {
|
} else if ($items[$key]['status'] === 1) {
|
||||||
$items[$key]['value'] = html_print_image(
|
$items[$key]['value'] = html_print_image(
|
||||||
'images/exito.png',
|
'images/validate.svg',
|
||||||
true,
|
true,
|
||||||
[
|
[
|
||||||
'title' => __('Successfully'),
|
'title' => __('Successfully'),
|
||||||
@ -1849,7 +1849,7 @@ class Diagnostics extends Wizard
|
|||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
$items[$key]['value'] = html_print_image(
|
$items[$key]['value'] = html_print_image(
|
||||||
'images/error_1.png',
|
'images/fail@svg.svg',
|
||||||
true,
|
true,
|
||||||
[
|
[
|
||||||
'title' => __('Error'),
|
'title' => __('Error'),
|
||||||
|
@ -842,7 +842,7 @@ if (is_ajax()) {
|
|||||||
$fragmentation_status = '';
|
$fragmentation_status = '';
|
||||||
if ($db_fragmentation->data->tablesFragmentationStatus->status === 1) {
|
if ($db_fragmentation->data->tablesFragmentationStatus->status === 1) {
|
||||||
$fragmentation_status = html_print_image(
|
$fragmentation_status = html_print_image(
|
||||||
'images/exito.png',
|
'images/validate.svg',
|
||||||
true,
|
true,
|
||||||
[
|
[
|
||||||
'title' => __('Successfully'),
|
'title' => __('Successfully'),
|
||||||
@ -851,7 +851,7 @@ if (is_ajax()) {
|
|||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
$fragmentation_status = html_print_image(
|
$fragmentation_status = html_print_image(
|
||||||
'images/error_1.png',
|
'images/fail@svg.svg',
|
||||||
true,
|
true,
|
||||||
[
|
[
|
||||||
'title' => __('Error'),
|
'title' => __('Error'),
|
||||||
|
@ -5843,6 +5843,7 @@ div.switch_radio_button label {
|
|||||||
margin-right: -1px;
|
margin-right: -1px;
|
||||||
border: 1px solid #cbcbcb;
|
border: 1px solid #cbcbcb;
|
||||||
transition: all 0.1s ease-in-out;
|
transition: all 0.1s ease-in-out;
|
||||||
|
background: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.switch_radio_button label:first-of-type {
|
div.switch_radio_button label:first-of-type {
|
||||||
|
@ -1249,8 +1249,7 @@ a.pandora_pagination:hover {
|
|||||||
background-color: #555 !important;
|
background-color: #555 !important;
|
||||||
}
|
}
|
||||||
.dt-button.buttons-csv.buttons-html5 {
|
.dt-button.buttons-csv.buttons-html5 {
|
||||||
filter: invert(100%);
|
box-shadow: 0px 3px 6px #111;
|
||||||
background-color: transparent;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.info_table.events > tbody > tr > td {
|
.info_table.events > tbody > tr > td {
|
||||||
@ -1494,7 +1493,7 @@ div.white_box.white_box_opened.no_border {
|
|||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.filter-table-adv td > div label {
|
table.filter-table-adv td > div label:not(.inputFile) {
|
||||||
color: white !important;
|
color: white !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1507,3 +1506,12 @@ div.fixed-bottom-box
|
|||||||
> div.fixed-bottom-box-head-body {
|
> div.fixed-bottom-box-head-body {
|
||||||
background-color: #111111 !important;
|
background-color: #111111 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.filter_table,
|
||||||
|
.white_table_graph_fixed table {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.select2 {
|
||||||
|
border-radius: 6px;
|
||||||
|
}
|
||||||
|
@ -97,7 +97,7 @@ ui_print_message_dialog(
|
|||||||
$conn_title,
|
$conn_title,
|
||||||
$conn_text,
|
$conn_text,
|
||||||
'connection',
|
'connection',
|
||||||
'/images/error_1.png'
|
'/images/fail@svg.svg'
|
||||||
);
|
);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -173,7 +173,7 @@ ui_print_message_dialog(
|
|||||||
$conn_title,
|
$conn_title,
|
||||||
$conn_text,
|
$conn_text,
|
||||||
'connection',
|
'connection',
|
||||||
'/images/error_1.png'
|
'/images/fail@svg.svg'
|
||||||
);
|
);
|
||||||
|
|
||||||
$inputs = [];
|
$inputs = [];
|
||||||
|
@ -278,7 +278,7 @@ if ($layers != false) {
|
|||||||
$conn_text = __('Connection to the server has been lost. Please check your internet connection or contact with administrator.');
|
$conn_text = __('Connection to the server has been lost. Please check your internet connection or contact with administrator.');
|
||||||
ui_require_javascript_file('connection_check');
|
ui_require_javascript_file('connection_check');
|
||||||
set_js_value('absolute_homeurl', ui_get_full_url(false, false, false, false));
|
set_js_value('absolute_homeurl', ui_get_full_url(false, false, false, false));
|
||||||
ui_print_message_dialog($conn_title, $conn_text, 'connection', '/images/error_1.png');
|
ui_print_message_dialog($conn_title, $conn_text, 'connection', '/images/fail@svg.svg');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Resize GIS map on fullscreen
|
// Resize GIS map on fullscreen
|
||||||
|
@ -56,7 +56,7 @@ ui_require_javascript_file('connection_check', 'include/javascript/', true);
|
|||||||
set_js_value('absolute_homeurl', ui_get_full_url(false, false, false, false));
|
set_js_value('absolute_homeurl', ui_get_full_url(false, false, false, false));
|
||||||
$conn_title = __('Connection with server has been lost');
|
$conn_title = __('Connection with server has been lost');
|
||||||
$conn_text = __('Connection to the server has been lost. Please check your internet connection or contact with administrator.');
|
$conn_text = __('Connection to the server has been lost. Please check your internet connection or contact with administrator.');
|
||||||
ui_print_message_dialog($conn_title, $conn_text, 'connection', '/images/error_1.png');
|
ui_print_message_dialog($conn_title, $conn_text, 'connection', '/images/fail@svg.svg');
|
||||||
|
|
||||||
require_once 'include/functions_visual_map.php';
|
require_once 'include/functions_visual_map.php';
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ ui_require_javascript_file('connection_check', 'include/javascript/', true);
|
|||||||
set_js_value('absolute_homeurl', ui_get_full_url(false, false, false, false));
|
set_js_value('absolute_homeurl', ui_get_full_url(false, false, false, false));
|
||||||
$conn_title = __('Connection with server has been lost');
|
$conn_title = __('Connection with server has been lost');
|
||||||
$conn_text = __('Connection to the server has been lost. Please check your internet connection or contact with administrator.');
|
$conn_text = __('Connection to the server has been lost. Please check your internet connection or contact with administrator.');
|
||||||
ui_print_message_dialog($conn_title, $conn_text, 'connection', '/images/error_1.png');
|
ui_print_message_dialog($conn_title, $conn_text, 'connection', '/images/fail@svg.svg');
|
||||||
|
|
||||||
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'."\n";
|
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'."\n";
|
||||||
echo '<html xmlns="http://www.w3.org/1999/xhtml">'."\n";
|
echo '<html xmlns="http://www.w3.org/1999/xhtml">'."\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user