쇼핑몰관리자: ie6 상품등록/수정 관련상품 관련이벤트 스타일 오류 수정

This commit is contained in:
whitedot
2014-04-14 17:44:16 +09:00
parent 3c89ecb10e
commit 24589442e6
3 changed files with 15 additions and 12 deletions

View File

@ -691,12 +691,15 @@ strong.sodr_nonpay {display:block;padding:5px 0;text-align:right}
/* 관련 상품, 관련 이벤트 입력/수정 */
.srel section ul {margin:0;padding:10px;list-style:none}
.srel section li {position:relative;border-bottom:1px solid #e9e9e9}
.srel .srel_list {height:auto !important;height:200px;max-height:200px;border:1px solid #ced9de;background:#f6f6f6;overflow-y:scroll}
.srel section li {padding:5px 0;border-bottom:1px solid #e9e9e9;zoom:1}
.srel section li:after {display:block;visibility:hidden;clear:both;content:''}
.srel .srel_list, .srel .srel_sel {height:auto !important;height:200px;max-height:200px;border:1px solid #ced9de;background:#f6f6f6;overflow-y:scroll}
.srel .list_item {float:left;width:80%}
.srel .list_item img {float:left;margin:0 10px 0 0}
.srel .list_item_btn {float:right}
.srel .srel_sel {border:1px solid #ced9de;background:#fcfff2}
.srel .srel_list p, .srel .srel_sel p {padding:10px 0;text-align:center}
.srel .compare_left ul {margin:0;list-style:none}
.srel button {position:absolute;top:12px;right:0}
.srel .srel_noneimg li {padding:7px 0}
.srel .srel_noneimg button {top:0;right:0}
.srel .srel_pad {display:block;height:30px}

View File

@ -1426,8 +1426,8 @@ $(function(){
?>
<li>
<input type="hidden" name="re_it_id[]" value="<?php echo $row['it_id']; ?>">
<?php echo $it_name; ?>
<button type="button" class="del_item">삭제</button>
<div class="list_item"><?php echo $it_name; ?></div>
<div class="list_item_btn"><button type="button" class="del_item btn_frmline">삭제</button></div>
</li>
<?php
$str[] = $row['it_id'];
@ -1466,8 +1466,8 @@ $(function(){
?>
<li>
<input type="hidden" name="ev_id[]" value="<?php echo $row['ev_id']; ?>">
<?php echo get_text($row['ev_subject']); ?>
<button type="button" class="add_event">추가</button>
<div class="list_item"><?php echo get_text($row['ev_subject']); ?></div>
<div class="list_item_btn"><button type="button" class="add_event btn_frmline">추가</button></div>
</li>
<?php
}
@ -1544,8 +1544,8 @@ $(function(){
?>
<li>
<input type="hidden" name="ev_id[]" value="<?php echo $row['ev_id']; ?>">
<?php echo get_text($row['ev_subject']); ?>
<button type="button" class="del_event">삭제</button>
<div class="list_item"><?php echo get_text($row['ev_subject']); ?></div>
<div class="list_item_btn"><button type="button" class="del_event btn_frmline">삭제</button></div>
</li>
<?php
}

View File

@ -30,10 +30,10 @@ for($i=0;$row=sql_fetch_array($result);$i++) {
$it_name = get_it_image($row['it_id'], 50, 50).' '.$row['it_name'];
$list .= '<li>';
$list .= '<li class="list_res">';
$list .= '<input type="hidden" name="re_it_id[]" value="'.$row['it_id'].'">';
$list .= $it_name;
$list .= '<button type="button" class="add_item">추가</button>';
$list .= '<div class="list_item">'.$it_name.'</div>';
$list .= '<div class="list_item_btn"><button type="button" class="add_item btn_frmline">추가</button></div>';
$list .= '</li>'.PHP_EOL;
}