모바일쇼핑몰: 안드로이드 overflow 대응 코드 위치 이동
This commit is contained in:
@ -330,7 +330,7 @@ a.sanchor_on {background:#626870;color:#fff !important;text-decoration:none}
|
||||
|
||||
#sod_bsk_list {position:relative}
|
||||
#sod_bsk_list #mod_option_frm {z-index:10000;position:absolute;top:0;left:0;padding:20px;width:320px;height:auto !important;height:480px;max-height:480px;border:1px solid #000;background:#f5f6fa;overflow-y:scroll}
|
||||
html.no-overflowscrolling #mod_option_frm {height:auto;max-height:10000px !important}
|
||||
html.no-overflowscrolling #mod_option_frm {height:auto;max-height:10000px !important} /* overflow 미지원 기기 대응 */
|
||||
|
||||
#sod_bsk_tot {margin:0;padding:1em;border:1px solid #e9e9e9;background:#f5f6fa;zoom:1}
|
||||
#sod_bsk_tot:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
@ -355,7 +355,7 @@ html.no-overflowscrolling #mod_option_frm {height:auto;max-height:10000px !impor
|
||||
|
||||
#sod_list {position:relative}
|
||||
#sod_list #it_coupon_frm {z-index:10000;position:absolute;top:0;left:0;padding:20px;width:320px;height:auto !important;height:480px;max-height:480px;border:1px solid #000;background:#f5f6fa;overflow-y:scroll}
|
||||
html.no-overflowscrolling #it_coupon_frm {height:auto;max-height:10000px !important}
|
||||
html.no-overflowscrolling #it_coupon_frm {height:auto;max-height:10000px !important} /* overflow 미지원 기기 대응 */
|
||||
|
||||
#sod_frm_orderer {margin:1.8em 0 3.6em}
|
||||
|
||||
@ -368,7 +368,7 @@ html.no-overflowscrolling #it_coupon_frm {height:auto;max-height:10000px !import
|
||||
#sod_frm_pay .basic_tbl th {width:auto !important;font-weight:bold;text-align:center !important}
|
||||
#sod_frm_pay .basic_tbl td {border-top:1px solid #e9e9e9 !important;border-bottom:1px solid #e9e9e9 !important;line-height:1.5em !important;word-break:break-all !important}
|
||||
#sod_frm_pay #sc_coupon_frm, #sod_frm_pay #od_coupon_frm {z-index:10000;position:absolute;top:0;left:0;padding:20px;width:320px;height:auto !important;height:480px;max-height:480px;border:1px solid #000;background:#f5f6fa;overflow-y:scroll}
|
||||
html.no-overflowscrolling #sc_coupon_frm, html.no-overflowscrolling #od_coupon_frm {height:auto;max-height:10000px !important}
|
||||
html.no-overflowscrolling #sc_coupon_frm, html.no-overflowscrolling #od_coupon_frm {height:auto;max-height:10000px !important} /* overflow 미지원 기기 대응 */
|
||||
#sod_frm_pay .frm_input {background:#fff !important}
|
||||
#sod_frm_pay .frm_input:focus {color:#000}
|
||||
|
||||
|
||||
@ -81,6 +81,7 @@ if ($is_admin) {
|
||||
<?php
|
||||
if(G4_IS_MOBILE) {
|
||||
echo '<script> set_cookie("device_width", screen.width, 6, g4_cookie_domain); </script>'.PHP_EOL;
|
||||
echo '<script src="<?php echo G4_URL; ?>/js/modernizr.custom.70111.js"></script>'.PHP_EOL; // overflow scroll 감지
|
||||
}
|
||||
//if(!defined('G4_IS_ADMIN'))
|
||||
echo $config['cf_add_script'];
|
||||
|
||||
@ -7,9 +7,6 @@ include_once(G4_LIB_PATH.'/connect.lib.php');
|
||||
include_once(G4_LIB_PATH.'/popular.lib.php');
|
||||
?>
|
||||
|
||||
<!-- overflow scroll 감지 -->
|
||||
<script src="<?php echo G4_URL; ?>/js/modernizr.custom.70111.js"></script>
|
||||
|
||||
<header id="header">
|
||||
<?php if ((!$bo_table || $w == 's' ) && defined('_INDEX_')) { ?><h1><?php echo $config['cf_title'] ?></h1><?php } ?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user