Cleaned up the dashboard on mobile
Added padding to the sections, RST information hidden on mobile and QSL information only shown when logged in.
这个提交包含在:
父节点
843aafba61
当前提交
a3f12f0510
共有 2 个文件被更改,包括 23 次插入 和 13 次删除
|
|
@ -28,8 +28,8 @@
|
||||||
<th>Time</th>
|
<th>Time</th>
|
||||||
<th>Call</th>
|
<th>Call</th>
|
||||||
<th>Mode</th>
|
<th>Mode</th>
|
||||||
<th>Sent</th>
|
<th class="d-none d-sm-table-cell">Sent</th>
|
||||||
<th>Recv</th>
|
<th class="d-none d-sm-table-cell">Recv</th>
|
||||||
<th>Band</th>
|
<th>Band</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
@ -45,8 +45,8 @@
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td><?php echo $row->COL_MODE; ?></td>
|
<td><?php echo $row->COL_MODE; ?></td>
|
||||||
<td><?php echo $row->COL_RST_SENT; ?> <?php if ($row->COL_STX_STRING) { ?><span class="label"><?php echo $row->COL_STX_STRING;?></span><?php } ?></td>
|
<td class="d-none d-sm-table-cell"><?php echo $row->COL_RST_SENT; ?> <?php if ($row->COL_STX_STRING) { ?><span class="label"><?php echo $row->COL_STX_STRING;?></span><?php } ?></td>
|
||||||
<td><?php echo $row->COL_RST_RCVD; ?> <?php if ($row->COL_SRX_STRING) { ?><span class="label"><?php echo $row->COL_SRX_STRING;?></span><?php } ?></td>
|
<td class="d-none d-sm-table-cell"><?php echo $row->COL_RST_RCVD; ?> <?php if ($row->COL_SRX_STRING) { ?><span class="label"><?php echo $row->COL_SRX_STRING;?></span><?php } ?></td>
|
||||||
<?php if($row->COL_SAT_NAME != null) { ?>
|
<?php if($row->COL_SAT_NAME != null) { ?>
|
||||||
<td><?php echo $row->COL_SAT_NAME; ?></td>
|
<td><?php echo $row->COL_SAT_NAME; ?></td>
|
||||||
<?php } else { ?>
|
<?php } else { ?>
|
||||||
|
|
@ -60,9 +60,9 @@
|
||||||
|
|
||||||
<div class="col-sm-4">
|
<div class="col-sm-4">
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
<table class="table table-striped table-hover">
|
<table class="table table-striped">
|
||||||
<tr class="titles">
|
<tr class="titles">
|
||||||
<td colspan="2"><i class="fas fa-chart-bar"></i> QSOs</td>
|
<td colspan="2"><i class="fas fa-chart-bar"></i> QSOs Breakdown</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
|
|
@ -79,14 +79,13 @@
|
||||||
<td>Month</td>
|
<td>Month</td>
|
||||||
<td><?php echo $month_qsos; ?></td>
|
<td><?php echo $month_qsos; ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td></td>
|
|
||||||
<td></td>
|
<table class="table table-striped">
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr class="titles">
|
<tr class="titles">
|
||||||
<td colspan="2"><i class="fas fa-globe-europe"></i> Countries</td>
|
<td colspan="2"><i class="fas fa-globe-europe"></i> Countries Breakdown</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
|
|
@ -103,7 +102,10 @@
|
||||||
<td></td>
|
<td></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<?php if(($this->config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE) { ?>
|
||||||
|
<table class="table table-striped">
|
||||||
<tr class="titles">
|
<tr class="titles">
|
||||||
<td colspan="2"><i class="fas fa-envelope"></i> QSL Cards</td>
|
<td colspan="2"><i class="fas fa-envelope"></i> QSL Cards</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
@ -123,6 +125,7 @@
|
||||||
<td><?php echo $total_qsl_requested; ?></td>
|
<td><?php echo $total_qsl_requested; ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -5,4 +5,11 @@
|
||||||
width : 710px !important;
|
width : 710px !important;
|
||||||
height : 310px !important;
|
height : 310px !important;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dashboard {
|
||||||
|
padding-top: 15px;
|
||||||
|
}
|
||||||
|
.row.logdata {
|
||||||
|
padding-top: 15px;
|
||||||
}
|
}
|
||||||
正在加载…
在新工单中引用