모바일쇼핑몰: 상품 상세보기 fancyalert 스타일 수정
This commit is contained in:
@ -190,7 +190,9 @@ a.sanchor_on {background:#626870;color:#fff !important;text-decoration:none}
|
||||
|
||||
/* 상품 상세보기 - 다른 상품 보기 */
|
||||
#sit_siblings {margin:0 0 10px;padding:10px 10px 20px;border-bottom:1px solid #e9e9e9;text-align:center}
|
||||
#sit_siblings h2 {position:absolute;font-size:0;line-height:0;content:""}
|
||||
#sit_siblings h2 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
|
||||
#sit_siblings a {display:inline-block;margin:0 10px}
|
||||
#sit_siblings a span {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
|
||||
|
||||
/* 상품 상세보기 하단 버튼 */
|
||||
#sit_more {padding:0 0 0 1px}
|
||||
@ -201,7 +203,7 @@ a.sanchor_on {background:#626870;color:#fff !important;text-decoration:none}
|
||||
/* 상품 상세보기 - 상품정보 */
|
||||
#sit_inf {margin:0 0 1em;padding:1em 1em 2em;border-bottom:1px solid #e9e9e9}
|
||||
#sit_inf h2 {margin:0 0 1em}
|
||||
#sit_inf h3 {position:absolute;font-size:0;line-height:0;content:""}
|
||||
#sit_inf h3 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
|
||||
|
||||
#sit_inf_basic {margin:0 0 1em}
|
||||
#sit_inf_explan {margin:0 0 1em}
|
||||
|
||||
@ -14,7 +14,7 @@ function fancyalert(msg)
|
||||
box += "<div id=\"fancyalert_inner\"><span>"+msg;
|
||||
box += "<br>";
|
||||
box += "<button type=\"button\" id=\"fancyalert_close\">확인</button>";
|
||||
box += "</span></div>";
|
||||
box += "</span></div><div id=\"fancyalert_bg\"></div>";
|
||||
box += "</div>";
|
||||
|
||||
$("body").append(box);
|
||||
|
||||
@ -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