모바일: #28 포인트내역 날짜 표시 방법/스타일 변경

This commit is contained in:
whitedot
2014-03-12 17:49:18 +09:00
parent 17812bf744
commit 0c35a1fa24
2 changed files with 5 additions and 4 deletions

View File

@ -30,12 +30,12 @@ add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">',
$po_content = $row['po_content'];
$expr = '';
if($row['po_expired'] == 1)
// if($row['po_expired'] == 1)
$expr = ' txt_expired';
?>
<li>
<div class="point_wrap01">
<span class="point_date"><?php echo $row['po_datetime']; ?></span>
<span class="point_date"><?php echo conv_date_format('y-m-d H시', $row['po_datetime']); ?></span>
<span class="point_log"><?php echo $po_content; ?></span>
</div>
<div class="point_wrap02">

View File

@ -151,8 +151,9 @@
/* 포인트 */
#point_ul {margin:0 20px;padding:0;border-top:1px solid #e9e9e9;list-style:none}
#point_ul li {position:relative;padding:10px 0;border-bottom:1px solid #e9e9e9}
#point_ul .point_wrap02 {margin:5px 0 0;text-align:right}
#point_ul .point_date {display:inline-block;margin:0 10px 0 0}
#point_ul .point_wrap01 {position:relative;padding:0 0 0 90px}
#point_ul .point_wrap02 {margin:7px 0 0;text-align:right}
#point_ul .point_date {position:absolute;top:0;left:0}
#point_sum {margin:0 20px}
#point_sum .sum_row {margin:0 0 1px;background:#f2f5f9}