From 48dc7506d3d0eede0ea517dd9759e488bd61d9e0 Mon Sep 17 00:00:00 2001 From: whitedot Date: Fri, 19 Jul 2013 11:51:59 +0900 Subject: [PATCH 1/4] =?UTF-8?q?=EC=87=BC=ED=95=91=EB=AA=B0:=20#258=20?= =?UTF-8?q?=EC=83=81=ED=92=88=EB=AC=B8=EC=9D=98=20=EC=82=AC=EC=9A=A9?= =?UTF-8?q?=ED=9B=84=EA=B8=B0=20=EB=AA=A8=EC=9D=8C=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=EC=8A=A4=ED=83=80=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/default_shop.css | 33 +++++++++++++++++++++++++++++++-- shop/itemqalist.php | 40 ++++++++++++++++++++++------------------ shop/itemuselist.php | 28 +++++++++++++++------------- 3 files changed, 68 insertions(+), 33 deletions(-) diff --git a/css/default_shop.css b/css/default_shop.css index c1ce268fd..9cb4db43b 100644 --- a/css/default_shop.css +++ b/css/default_shop.css @@ -608,6 +608,10 @@ td.empty_table {padding:85px 0;text-align:center} #sit_rel .sct_last {margin:0 !important} /* 사용후기 모음 */ +#sps_sch {margin:0 0 10px} +#sps_sch a {display:inline-block;padding:0 8px;height:22px;background:#333;color:#fff;text-decoration:none;vertical-align:middle;line-height:1.9em} +#sps_sch .btn_submit {height:22px;vertical-align:middle} + #sps {zoom:1} #sps ol {margin:0;padding:0;border-top:1px solid #e9e9e9;list-style:none} #sps li {position:relative;padding:10px;border-bottom:1px solid #e9e9e9} @@ -616,19 +620,44 @@ td.empty_table {padding:85px 0;text-align:center} .sps_img {float:left;margin:0 10px 0 0;width:80px} .sps_img span {position:absolute;font-size:0;line-height:0} -.sps_section {float:left;width:630px} - #sps dl {margin:5px 0 10px;zoom:1} #sps dl:after {display:block;visibility:hidden;clear:both;content:""} #sps dt {float:left} #sps dd {float:left;margin:0 20px 0 5px} #sps dd img {position:relative;top:-2px} +.sps_section {float:left;width:630px} .sps_section p {padding:0;width:100%;height:20px;overflow:hidden} .sps_con_full {padding:0;height:auto !important} .sps_con_btn {margin:5px 0 0;text-align:right} .sps_con_btn button {margin:0;padding:5px;border:0;background:#565e60;color:#fff} +/* 상품문의 모음 */ +#sqa_sch {margin:0 0 10px} +#sqa_sch a {display:inline-block;padding:0 8px;height:22px;background:#333;color:#fff;text-decoration:none;vertical-align:middle;line-height:1.9em} +#sqa_sch .btn_submit {height:22px;vertical-align:middle} + +#sqa {zoom:1} +#sqa ol {margin:0;padding:0;border-top:1px solid #e9e9e9;list-style:none} +#sqa li {position:relative;padding:10px;border-bottom:1px solid #e9e9e9} +#sqa li:after {display:block;visibility:hidden;clear:both;content:""} + +.sqa_img {float:left;margin:0 10px 0 0;width:80px} +.sqa_img span {position:absolute;font-size:0;line-height:0} + +#sqa dl {margin:5px 0 10px;zoom:1} +#sqa dl:after {display:block;visibility:hidden;clear:both;content:""} +#sqa dt {float:left} +#sqa dd {float:left;margin:0 20px 0 5px} +#sqa dd img {position:relative;top:-2px} + +.sqa_section {float:left;width:630px} +.sqa_section .sqa_con {padding:10px;background:#f2f5f9;line-height:1.7em} +.sqa_section p {padding:0;width:100%;height:20px;overflow:hidden} +.sqa_con_full {padding:0;height:auto !important} +.sqa_con_btn {margin:5px 0 0;text-align:right} +.sqa_con_btn button {margin:0;padding:5px;border:0;background:#565e60;color:#fff} + /* 마이페이지 */ #smb_my {} diff --git a/shop/itemqalist.php b/shop/itemqalist.php index c9cf685f6..7ba0194db 100644 --- a/shop/itemqalist.php +++ b/shop/itemqalist.php @@ -57,23 +57,27 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함 ?> -전체보기
- - - +
+ 전체보기 + + + + + +
-
+
@@ -112,17 +116,17 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함 ?>
  • -
    + -
    +

    -
    +
    작성자
    작성일
    @@ -131,7 +135,7 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
    -
  • 0) echo ''; - if ($i == 0) echo '

    자료가 없습니다.

    '; + if ($i == 0) echo '

    자료가 없습니다.

    '; ?>
    diff --git a/shop/itemuselist.php b/shop/itemuselist.php index aa7069abf..f6a8b87d3 100644 --- a/shop/itemuselist.php +++ b/shop/itemuselist.php @@ -57,20 +57,22 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함 ?> -전체보기 -
    - - - +
    + 전체보기 + + + + +
    From 70ce715a4db17b205cde9349b37bd581459881d0 Mon Sep 17 00:00:00 2001 From: whitedot Date: Fri, 19 Jul 2013 12:05:14 +0900 Subject: [PATCH 2/4] =?UTF-8?q?=EB=AA=A8=EB=B0=94=EC=9D=BC=EC=87=BC?= =?UTF-8?q?=ED=95=91=EB=AA=B0:=20#258=20=EC=83=81=ED=92=88=EB=AC=B8?= =?UTF-8?q?=EC=9D=98=20=EC=82=AC=EC=9A=A9=ED=9B=84=EA=B8=B0=20=EB=AA=A8?= =?UTF-8?q?=EC=9D=8C=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=8A=A4=ED=83=80?= =?UTF-8?q?=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/mobile_shop.css | 37 ++++++++++++++++++++++++++++++---- mobile/shop/itemqalist.php | 40 ++++++++++++++++++++----------------- mobile/shop/itemuselist.php | 30 ++++++++++++++++------------ shop/itemqalist.php | 3 ++- shop/itemuselist.php | 3 ++- 5 files changed, 76 insertions(+), 37 deletions(-) diff --git a/css/mobile_shop.css b/css/mobile_shop.css index c50bf3275..3362fd936 100644 --- a/css/mobile_shop.css +++ b/css/mobile_shop.css @@ -282,27 +282,56 @@ a.sanchor_on {background:#626870;color:#fff !important;text-decoration:none} #sit_rel .sct_img {width:230px;height:230px} /* 사용후기 모음 */ +#sps_sch {margin:0 0 10px} +#sps_sch a {display:inline-block;padding:0 8px;height:1.8em;background:#333;color:#fff;text-decoration:none;vertical-align:middle;line-height:1.8em} +#sps_sch .btn_submit {height:1.8em;vertical-align:middle;line-height:1.8em} + #sps {zoom:1} #sps ol {margin:0;padding:0;border-top:1px solid #e9e9e9;list-style:none} #sps li {position:relative;padding:1em;border-bottom:1px solid #e9e9e9} #sps li:after {display:block;visibility:hidden;clear:both;content:""} -.sps_img {float:left;margin:0 1em 0 0;width:80px} +.sps_img {float:left;width:15%} .sps_img span {position:absolute;font-size:0;line-height:0} -.sps_section {float:left;width:630px} - #sps dl {margin:0.3em 0 1em;zoom:1} #sps dl:after {display:block;visibility:hidden;clear:both;content:""} #sps dt {float:left} -#sps dd {float:left;margin:0 1.8em 0 0.3em} +#sps dd {float:left;margin:0 1.5em 0 0.3em} #sps dd img {position:relative;top:-2px} +.sps_section {float:right;width:80%} .sps_section p {padding:0;width:100%;height:1.8em;overflow:hidden} .sps_con_full {padding:0;height:auto !important} .sps_con_btn {margin:0.3em 0 0;text-align:right} .sps_con_btn button {margin:0;padding:0.3em;border:0;background:#565e60;color:#fff} +/* 상품문의 모음 */ +#sqa_sch {margin:0 0 10px} +#sqa_sch a {display:inline-block;padding:0 8px;height:1.8em;background:#333;color:#fff;text-decoration:none;vertical-align:middle;line-height:1.8em} +#sqa_sch .btn_submit {height:1.8em;vertical-align:middle;line-height:1.8em} + +#sqa {zoom:1} +#sqa ol {margin:0;padding:0;border-top:1px solid #e9e9e9;list-style:none} +#sqa li {position:relative;padding:1em;border-bottom:1px solid #e9e9e9} +#sqa li:after {display:block;visibility:hidden;clear:both;content:""} + +.sqa_img {float:left;width:15%} +.sqa_img span {position:absolute;font-size:0;line-height:0} + +#sqa dl {margin:0.3em 0 1em;zoom:1} +#sqa dl:after {display:block;visibility:hidden;clear:both;content:""} +#sqa dt {float:left} +#sqa dd {float:left;margin:0 1.5em 0 0.3em} +#sqa dd img {position:relative;top:-2px} + +.sqa_section {float:right;width:80%} +.sqa_section .sqa_con {padding:1em;background:#f2f5f9;line-height:1.7em} +.sqa_section p {padding:0;width:100%;height:1.8em;overflow:hidden} +.sqa_con_full {padding:0;height:auto !important} +.sqa_con_btn {margin:0.3em 0 0;text-align:right} +.sqa_con_btn button {margin:0;padding:0.3em;border:0;background:#565e60;color:#fff} + /* 마이페이지 */ #smb_my {} diff --git a/mobile/shop/itemqalist.php b/mobile/shop/itemqalist.php index cde76f662..1a2642bad 100644 --- a/mobile/shop/itemqalist.php +++ b/mobile/shop/itemqalist.php @@ -51,23 +51,27 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함 ?> -전체보기 -
    - - - +
    + 전체보기 + + + + + + +
    -
    +
    @@ -106,17 +110,17 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함 ?>
  • -
    + -
    +

    -
    +
    작성자
    작성일
    @@ -125,7 +129,7 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
    -