diff --git a/admin/intro.php b/admin/intro.php index ad08f0a06..0b5bfe82c 100644 --- a/admin/intro.php +++ b/admin/intro.php @@ -244,12 +244,13 @@ foreach ($result as $row) @$activity_last_weeks[$week][$day_nb]['date'] = format_date($day_date->getTimestamp()); } -//echo '
'; print_r($activity_last_weeks); echo '
'; - foreach($activity_last_weeks as $week => $i) { foreach($i as $day => $j) { + $details = $j['details']; + ksort($details); + $activity_last_weeks[$week][$day]['details'] = $details; if ($j['number'] > 0) { $temp_data[] = array('x' => $j['number'], 'd'=>$day, 'w'=>$week); diff --git a/admin/themes/default/theme.css b/admin/themes/default/theme.css index 7059cd76c..af1f1d71d 100644 --- a/admin/themes/default/theme.css +++ b/admin/themes/default/theme.css @@ -547,7 +547,7 @@ FORM.properties SPAN.property { /* Dashboard */ .intro-page-container { display: grid; - grid-template-columns: 50% 49%; + grid-template-columns: 48% 52%; } .stat-boxes {