mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
#13557 fixed dark style for NCM type item report - Configuration Changes
This commit is contained in:
parent
88384fa29d
commit
6d45308111
@ -4104,7 +4104,7 @@ function reporting_html_historical_data($table, $item, $pdf=0)
|
|||||||
|
|
||||||
// Center every row
|
// Center every row
|
||||||
foreach ($table1->data[0] as $k => $v) {
|
foreach ($table1->data[0] as $k => $v) {
|
||||||
for ($i = 0; $i < count($table1->data); $i++){
|
for ($i = 0; $i < count($table1->data); $i++) {
|
||||||
$table1->cellstyle[$i][$k] = 'text-align: center;';
|
$table1->cellstyle[$i][$k] = 'text-align: center;';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -4187,7 +4187,7 @@ function reporting_html_database_serialized($table, $item, $pdf=0)
|
|||||||
|
|
||||||
// Center every row
|
// Center every row
|
||||||
foreach ($table1->data[0] as $k => $v) {
|
foreach ($table1->data[0] as $k => $v) {
|
||||||
for ($i = 0; $i < count($table1->data); $i++){
|
for ($i = 0; $i < count($table1->data); $i++) {
|
||||||
$table1->cellstyle[$i][$k] = 'text-align: center;';
|
$table1->cellstyle[$i][$k] = 'text-align: center;';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -6432,7 +6432,7 @@ function reporting_html_sql($table, $item, $pdf=0)
|
|||||||
|
|
||||||
// Center every row
|
// Center every row
|
||||||
foreach ($table2->data[0] as $k => $v) {
|
foreach ($table2->data[0] as $k => $v) {
|
||||||
for ($i = 0; $i < count($table2->data); $i++){
|
for ($i = 0; $i < count($table2->data); $i++) {
|
||||||
$table2->cellstyle[$i][$k] = 'text-align: center;';
|
$table2->cellstyle[$i][$k] = 'text-align: center;';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -7883,6 +7883,12 @@ function reporting_html_ncm_list($table, $item, $pdf=0)
|
|||||||
*/
|
*/
|
||||||
function reporting_html_ncm_backups($table, $item, $pdf=0)
|
function reporting_html_ncm_backups($table, $item, $pdf=0)
|
||||||
{
|
{
|
||||||
|
global $config;
|
||||||
|
|
||||||
|
if ($config['style'] === 'pandora_black') {
|
||||||
|
ui_require_css_file('pandora_black');
|
||||||
|
}
|
||||||
|
|
||||||
ui_require_css_file('diff2html.min');
|
ui_require_css_file('diff2html.min');
|
||||||
ui_require_css_file('highlight.min');
|
ui_require_css_file('highlight.min');
|
||||||
ui_require_css_file('highlight/vs.min');
|
ui_require_css_file('highlight/vs.min');
|
||||||
|
@ -2094,3 +2094,9 @@ select option:checked {
|
|||||||
#horizontalBar > .labels > .label > div[style^="background"] {
|
#horizontalBar > .labels > .label > div[style^="background"] {
|
||||||
filter: invert(1);
|
filter: invert(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.d2h-file-list-header,
|
||||||
|
.d2h-file-name-wrapper,
|
||||||
|
.d2h-file-collapse {
|
||||||
|
color: #333 !important;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user