fixed styles
This commit is contained in:
parent
9a295cf974
commit
6545bdbaf1
|
@ -583,7 +583,7 @@ function initialiceLayout(data) {
|
|||
success: function(data) {
|
||||
$("#modal-add-widget").empty();
|
||||
$("#modal-add-widget").append(data);
|
||||
$("a.pagination").click(function() {
|
||||
$("a.pandora_pagination").click(function() {
|
||||
var offset = $(this)
|
||||
.attr("href")
|
||||
.split("=")
|
||||
|
|
|
@ -28,6 +28,10 @@ ul.mn {
|
|||
justify-content: center;
|
||||
}
|
||||
|
||||
#menu_tab {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
#menu_tab li.nomn.tab_operation img,
|
||||
#menu_tab li.nomn.tab_godmode img,
|
||||
#menu_tab li.nomn_high.tab_operation img,
|
||||
|
@ -111,8 +115,6 @@ h1 {
|
|||
}
|
||||
|
||||
.grid-stack-item .grid-stack-item-content .header-widget {
|
||||
background-color: black;
|
||||
color: #fff;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
|
|
|
@ -10639,12 +10639,14 @@ table tr td:first-child {
|
|||
|
||||
input[type="color"] {
|
||||
background: transparent;
|
||||
padding: 0 10px;
|
||||
width: 50px;
|
||||
box-sizing: initial;
|
||||
border: 2px solid #14524f;
|
||||
box-shadow: 0px 3px 6px #c7c7c7;
|
||||
border-radius: 16px;
|
||||
height: 25px;
|
||||
width: 50px;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
border: 0px;
|
||||
border-radius: 0px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
span.ColorPickerDivSample {
|
||||
|
|
|
@ -49,7 +49,7 @@ if ($manageDashboards !== 0 || $writeDashboards !== 0) {
|
|||
if ((int) $cellData['id_widget'] !== 0) {
|
||||
$output .= '<a id="configure-widget-'.$cellData['id'].'" class="">';
|
||||
$output .= html_print_image(
|
||||
'images/input_cog_white.png',
|
||||
'images/configuration@svg.svg',
|
||||
true,
|
||||
[
|
||||
'width' => '16px',
|
||||
|
@ -61,7 +61,7 @@ if ($manageDashboards !== 0 || $writeDashboards !== 0) {
|
|||
|
||||
$output .= '<a id="delete-widget-'.$cellData['id'].'" class="">';
|
||||
$output .= html_print_image(
|
||||
'images/input_delete_white.png',
|
||||
'images/delete.svg',
|
||||
true,
|
||||
[
|
||||
'width' => '16px',
|
||||
|
|
|
@ -273,22 +273,20 @@ if (isset($config['public_dashboard']) === true
|
|||
}
|
||||
|
||||
if ($publicLink === false) {
|
||||
if ((bool) is_metaconsole() === true) {
|
||||
ui_meta_print_header(
|
||||
__('Dashboards').' » '.__('List'),
|
||||
false,
|
||||
$buttons
|
||||
);
|
||||
} else {
|
||||
ui_print_page_header(
|
||||
$dashboardName,
|
||||
'',
|
||||
false,
|
||||
'',
|
||||
false,
|
||||
$buttons
|
||||
);
|
||||
}
|
||||
ui_print_standard_header(
|
||||
$dashboardName,
|
||||
'',
|
||||
false,
|
||||
'',
|
||||
true,
|
||||
$buttons,
|
||||
[
|
||||
[
|
||||
'link' => '',
|
||||
'label' => __('Dashboard'),
|
||||
],
|
||||
]
|
||||
);
|
||||
} else {
|
||||
$output = '<div id="dashboard-controls">';
|
||||
foreach ($buttons as $key => $value) {
|
||||
|
|
|
@ -36,7 +36,10 @@ if ((int) $cellData['id_widget'] !== 0 || $widgetId !== 0) {
|
|||
'add-widget-'.$cellData['id'],
|
||||
false,
|
||||
'',
|
||||
'class="sub cog add-widget"',
|
||||
[
|
||||
'icon' => 'cog',
|
||||
'mode' => 'secondary mini',
|
||||
],
|
||||
true
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue