모바일쇼핑몰: 상품 상세보기 fancyalert 스타일 수정
This commit is contained in:
@ -79,7 +79,7 @@ $sql = " select it_id, it_name from {$g5['g5_shop_item_table']}
|
||||
limit 1 ";
|
||||
$row = sql_fetch($sql);
|
||||
if ($row['it_id']) {
|
||||
$prev_title = '이전상품보기 '.$row['it_name'];
|
||||
$prev_title = '이전상품 <span>'.$row['it_name'].'</span>';
|
||||
$prev_href = '<a href="'.G5_SHOP_URL.'/item.php?it_id='.$row['it_id'].'">';
|
||||
$prev_href2 = '</a>';
|
||||
} else {
|
||||
@ -97,7 +97,7 @@ $sql = " select it_id, it_name from {$g5['g5_shop_item_table']}
|
||||
limit 1 ";
|
||||
$row = sql_fetch($sql);
|
||||
if ($row['it_id']) {
|
||||
$next_title = '다음 상품 '.$row['it_name'];
|
||||
$next_title = '다음 상품 <span>'.$row['it_name'].'</span>';
|
||||
$next_href = '<a href="'.G5_SHOP_URL.'/item.php?it_id='.$row['it_id'].'">';
|
||||
$next_href2 = '</a>';
|
||||
} else {
|
||||
|
||||
@ -79,7 +79,7 @@
|
||||
/* ##### maint.(nn).skin.php, list.(nn).skin.php 공통 적용 끝 ##### */
|
||||
|
||||
/* 상품상세 */
|
||||
#info_content {width:100%}
|
||||
#info_content {width:100%;height:100%}
|
||||
#menu_button {position:fixed;left:0;bottom:0;width:100%;height:40px;text-align:center}
|
||||
#menu_list {position:fixed;left:0;bottom:0}
|
||||
.menu_hidden {display:none}
|
||||
@ -89,7 +89,8 @@
|
||||
#loading_message img {position:relative;opacity:1.0}
|
||||
|
||||
/* 알림 box */
|
||||
#fancyalert {display:table;z-index:10000;position:absolute;top:0;left:0;background-color:#282828;text-align:center;opacity: 0.8}
|
||||
#fancyalert_inner {display:table-cell;width:100px;height:100px;vertical-align:middle;opacity:1.0}
|
||||
#fancyalert_inner span {display:block;margin:0 auto;padding:30px;width:200px;background:#000;color:#f0f1f2}
|
||||
#fancyalert_inner button {margin:15px 0 0;padding:10px 30px;border:0;background:#282828;color:#fff}
|
||||
#fancyalert {display:table;z-index:10000;position:absolute;top:0;left:0}
|
||||
#fancyalert_bg {position:absolute;top:0;left:0;width:100%;height:100%;vertical-align:middle;background:#000;text-align:center;opacity: 0.7}
|
||||
#fancyalert_inner {display:table-cell;position:relative;z-index:2;vertical-align:middle;text-align:center}
|
||||
#fancyalert_inner span {display:block;margin:0 auto;padding:30px;width:200px;background:#1f1f1f;color:#f0f1f2}
|
||||
#fancyalert_inner button {margin:15px 0 0;padding:10px 30px;border:0;background:#000;color:#fff}
|
||||
Reference in New Issue
Block a user