Skip to content
This repository has been archived by the owner on Apr 27, 2022. It is now read-only.

Commit

Permalink
Perbaikan tampilan widget statistik pengunjung
Browse files Browse the repository at this point in the history
  • Loading branch information
dikisiswanto committed Apr 11, 2019
1 parent 66aa8a2 commit 96e8d13
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
15 changes: 13 additions & 2 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
Style : Frontend web theme OpenSID
Version : 1.3
Version : 1.3.1
Author : Diki Siswanto
**/
Expand Down Expand Up @@ -962,7 +962,18 @@ aside ul#ul-menu {
list-style: square;
margin-left: 18px
}

aside #container table {
width: 100%;
padding: 0;
margin: 0;
}
aside #container table tbody tr {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
aside #container table tbody tr td:last-child {
text-align: right;
}

/* Halaman statistik */
.box-stats .btn-group {
Expand Down
2 changes: 1 addition & 1 deletion assets/css/style.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion commons/meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<meta name='theme' content='Cosmos' />
<meta name='designer' content='Diki Siswanto' />
<meta name='theme:designer' content='Diki Siswanto' />
<meta name='theme:version' content='1.3' />
<meta name='theme:version' content='1.3.1' />
<meta name='keywords' content="sid, sistem informasi desa, web, blog, informasi, website, cosmos, desa, kecamatan, kabupaten, indonesia, kampung, <?= $desa['nama_desa']; ?>, <?= $desa['nama_kecamatan']; ?>, <?= $desa['nama_kabupaten']; ?>" />
<meta property="og:site_name" content="<?= $desa_title ?>"/>
<meta property="og:type" content="article"/>
Expand Down
2 changes: 1 addition & 1 deletion layouts/mandiri.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
<?php $modul = [1,2,3,4] ?>
<?php $modul = array(1,2,3,4) ?>
<?php if(in_array($m, $modul)) : ?>
<?php $this->load->view($folder_themes . '/partials/mandiri/mandiri_layout') ?>
<?php else : ?>
Expand Down
6 changes: 3 additions & 3 deletions partials/mandiri/bantuan.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ function show_kartu_peserta(elem){
<?php endforeach; ?>
</tbody>
</table>
</div>
<?php else: ?>
<?php else: ?>
<p class='text-danger'>Daftar kosong sebab Anda tidak terdaftar dalam program bantuan apapun.</p>
<?php endif; ?>
<?php endif; ?>
</div>
</div>

0 comments on commit 96e8d13

Please sign in to comment.