Fix reports listing font size (#116)

This commit is contained in:
FrancescoUK
2016-02-07 23:16:54 +00:00
parent a5e66eabed
commit 09831faaf4

View File

@@ -2,7 +2,7 @@
<div id="page_title" style="margin-bottom:8px;"><?php echo $this->lang->line('reports_reports'); ?></div>
<div id="welcome_message"><?php echo $this->lang->line('reports_welcome_message'); ?></div>
<ul id="report_list">
<li><h3><?php echo $this->lang->line('reports_graphical_reports'); ?></h3>
<li><h4><?php echo $this->lang->line('reports_graphical_reports'); ?></h4>
<ul>
<?php
foreach($grants as $grant)
@@ -16,7 +16,7 @@
</ul>
</li>
<li><h3><?php echo $this->lang->line('reports_summary_reports'); ?></h3>
<li><h4><?php echo $this->lang->line('reports_summary_reports'); ?></h4>
<ul>
<?php
foreach($grants as $grant)
@@ -30,7 +30,7 @@
</ul>
</li>
<li><h3><?php echo $this->lang->line('reports_detailed_reports'); ?></h3>
<li><h4><?php echo $this->lang->line('reports_detailed_reports'); ?></h4>
<ul>
<?php
$person_id = $this->session->userdata('person_id');
@@ -46,7 +46,7 @@
if ($this->Employee->has_grant('reports_inventory', $this->session->userdata('person_id')))
{
?>
<li><h3><?php echo $this->lang->line('reports_inventory_reports'); ?></h3>
<li><h4><?php echo $this->lang->line('reports_inventory_reports'); ?></h4>
<ul>
<?php
show_report('', 'reports_inventory_low');