쇼핑몰관리자: #263 이벤트상품 등록 마크업 및 스타일 완료

This commit is contained in:
whitedot
2013-07-25 11:25:14 +09:00
parent d4821f0724
commit f4bb454f32
3 changed files with 22 additions and 11 deletions

View File

@ -163,19 +163,20 @@ include_once (G4_ADMIN_PATH.'/admin.head.php');
</td>
</tr>
<tr>
<td colspan="2">
<section>
<th scope="row">관련상품</th>
<td id="sev_it_rel" class="compare_wrap">
<section class="compare_left">
<h3>상품검색</h3>
<div>
<select name="ca_id" id="sch_ca_id">
<option value="">분류선택</option>
<?php echo $category_select; ?>
</select>
</div>
<select name="ca_id" id="sch_ca_id">
<option value="">분류선택</option>
<?php echo $category_select; ?>
</select>
<div id="sch_item_list">
</div>
</section>
<section>
<section class="compare_right">
<h3>등록된 상품</h3>
<div id="reg_item_list">
<?php
@ -196,7 +197,7 @@ include_once (G4_ADMIN_PATH.'/admin.head.php');
if($i > 0)
echo '</ul>';
else
echo '등록된 상품이 없습니다.';
echo '<p>등록된 상품이 없습니다.</p>';
?>
</div>
</section>

View File

@ -40,7 +40,7 @@ include_once(G4_PATH.'/head.sub.php');
</a>
</td>
<td class="td_smallmng"><?php echo ($row['it_use']?"사용":"미사용"); ?></td>
<td class="td_smallmng"><a href="javascript:del('./itemeventwindel.php?ev_id=<?php echo $ev_id; ?>&amp;it_id=<?php echo $row['it_id']; ?>');"><img src="./img/icon_del.jpg" alt="<?php echo $ev['ev_subject']; ?> 이벤트에서 삭제 : <?php echo cut_str(stripslashes($row['it_name']), 60, "&#133"); ?>"></a></td>
<td class="td_smallmng"><a href="javascript:del('./itemeventwindel.php?ev_id=<?php echo $ev_id; ?>&amp;it_id=<?php echo $row['it_id']; ?>');">삭제</a></td>
<tr>
<?php
}

View File

@ -9,6 +9,7 @@ h1, h2, h3, h4, h5, h6 {font-size:1em;font-family:dotum}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}
header ul, nav ul, aside ul, footer ul {margin:0;padding:0;list-style:none}
label, input, select, img {vertical-align:middle}
select {margin:0}
input {margin:0;padding:0;border-radius:0;font-family:dotum}
input[type=text], input[type=password], input[type=submit], input[type=image] {-webkit-appearance:none}
button {border-radius:0;font-size:1em;-webkit-appearance:none}
@ -263,6 +264,15 @@ strong.sodr_nonpay {display:block;padding:5px 0;text-align:right}
/* 이벤트 입력/수정 */
.frm_ev_id {display:inline-block;margin:0 10px 0 0;font-weight:bold}
#sev_it_rel #sch_item_list {margin:5px 0 0;background:#f6f6f6}
#sev_it_rel ul {margin:0;padding:10px;list-style:none}
#sev_it_rel #reg_item_list {border:1px solid #ced9de;background:#fcfff2}
#sev_it_rel #reg_item_list p {text-align:center}
#sev_it_rel .compare_left ul {margin:0;border:1px solid #ced9de;list-style:none}
#sev_it_rel .compare_right h3 {margin:10px 0 45px}
#sev_it_rel li {position:relative;border-bottom:1px solid #e9e9e9}
#sev_it_rel button {position:absolute;top:12px;right:0}
/* 쿠폰관리 */
#scp_list {}
#scp_list .scp_list_id {width:170px}