From 7c0bf1d1192fb5e18b5e962d870698fb76d76634 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Fri, 11 Jan 2013 10:59:47 +0900 Subject: [PATCH 01/40] =?UTF-8?q?=EC=BA=A1=EC=B1=A0=20=EC=A0=81=EC=9A=A9?= =?UTF-8?q?=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/write_comment_update.php | 42 +++++++++------------------- skin/board/neo/view_comment.skin.php | 29 +------------------ 2 files changed, 14 insertions(+), 57 deletions(-) diff --git a/bbs/write_comment_update.php b/bbs/write_comment_update.php index 39430f49d..3c0cef7e5 100644 --- a/bbs/write_comment_update.php +++ b/bbs/write_comment_update.php @@ -1,4 +1,5 @@ 50) { @include_once($board_skin_path.'/write_comment_update.head.skin.php'); -$g4['title'] = $wr_subject.'코멘트입력'; - $w = $_POST["w"]; -$wr_name = strip_tags($_POST["wr_name"]); -$wr_email = strip_tags($_POST["wr_email"]); +$wr_name = escape_trim($_POST['wr_name']); +$wr_email = ''; +if (!empty($_POST['wr_email'])) + $wr_email = escape_trim($_POST['wr_email']); // 비회원의 경우 이름이 누락되는 경우가 있음 -if (!$is_member) -{ - if (!trim($wr_name)) +if ($is_guest) { + if ($wr_name == '') alert('이름은 필히 입력하셔야 합니다.'); } -if ($w == "c" || $w == "cu") -{ - if ($member[mb_level] < $board[bo_comment_level]) +if ($w == "c" || $w == "cu") { + if ($member['mb_level'] < $board['bo_comment_level']) alert('코멘트를 쓸 권한이 없습니다.'); } else @@ -32,29 +31,14 @@ else // 세션의 시간 검사 // 4.00.15 - 코멘트 수정시 연속 게시물 등록 메시지로 인한 오류 수정 -if ($w == 'c' && $_SESSION["ss_datetime"] >= ($g4[server_time] - $config[cf_delay_sec]) && !$is_admin) +if ($w == 'c' && $_SESSION['ss_datetime'] >= ($g4['server_time'] - $config['cf_delay_sec']) && !$is_admin) alert('너무 빠른 시간내에 게시물을 연속해서 올릴 수 없습니다.'); -set_session("ss_datetime", $g4[server_time]); - -// 동일내용 연속 등록 불가 -$sql = " select MD5(CONCAT(wr_ip, wr_subject, wr_content)) as prev_md5 from {$write_table} "; -if ($w == 'cu') - $sql .= " where wr_id <> '{$comment_id}' "; -$sql .= " order by wr_id desc limit 1 "; -$row = sql_fetch($sql); -$curr_md5 = md5($_SERVER[REMOTE_ADDR].$wr_subject.$wr_content); -// 코멘트 수정의 경우에는 동일한 내용을 등록할 수 없는 오류 수정 -//if ($row[prev_md5] == $curr_md5 && !$is_admin) -if ($row[prev_md5] == $curr_md5 && $w != 'cu' && !$is_admin) - alert('동일한 내용을 연속해서 등록할 수 없습니다.'); +set_session('ss_datetime', $g4['server_time']); $wr = get_write($write_table, $wr_id); -if (!$wr[wr_id]) - alert('글이 존재하지 않습니다.'.PHP_EOL.PHP_EOL.'글이 삭제되었거나 이동하였을 수 있습니다.'); - -// 자동등록방지 검사 -//include_once ("./norobot_check.inc.php"); +if (empty($wr['wr_id'])) + alert("글이 존재하지 않습니다.\\n글이 삭제되었거나 이동하였을 수 있습니다."); if (!$is_member) { if ($w=='' || $w=='c') { diff --git a/skin/board/neo/view_comment.skin.php b/skin/board/neo/view_comment.skin.php index d771ca42d..c3452eb58 100644 --- a/skin/board/neo/view_comment.skin.php +++ b/skin/board/neo/view_comment.skin.php @@ -89,7 +89,6 @@ var char_max = parseInt(); // 최대 - + + + + @@ -39,27 +63,3 @@ for ($i=0; $i - - -
-
- 상세검색 - - - - - -
- - From c06e479d4208162e7dd22791564bbf0a2924264e Mon Sep 17 00:00:00 2001 From: whitedot Date: Fri, 11 Jan 2013 13:39:11 +0900 Subject: [PATCH 14/40] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90:=20=EC=B5=9C?= =?UTF-8?q?=EA=B7=BC=EA=B2=8C=EC=8B=9C=EB=AC=BC=20=EA=B2=80=EC=83=89=20?= =?UTF-8?q?=EC=98=81=EC=97=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/def.css | 4 ++++ skin/new/neo/new.skin.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/css/def.css b/css/def.css index 15931d28d..ca19dd13e 100644 --- a/css/def.css +++ b/css/def.css @@ -393,6 +393,10 @@ a {color:#000;text-decoration:none} #password_confirm legend {margin:0;padding:0;width:0;height:0;border:0;overflow:hidden} #password_confirm p {margin-bottom:20px;font-size:0.75em} +/* 최근게시물 */ +#new_search {margin:0 0 10px;padding:0;border:0;text-align:right} +#new_search legend {margin:0;padding:0;width:0;height:0;border:0;overflow:hidden} + /* 새창 공통 */ .new_win h1 {padding:10px 30px;background:#393936;color:#fff;font-size:1.2em} .new_win h1 a {color:#fff} diff --git a/skin/new/neo/new.skin.php b/skin/new/neo/new.skin.php index 2a5bd9924..de1d179ad 100644 --- a/skin/new/neo/new.skin.php +++ b/skin/new/neo/new.skin.php @@ -4,7 +4,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
-
+
- + @@ -52,10 +52,14 @@ for($i=0; $row=sql_fetch_array($result); $i++) { - + + + + +
포인트내역 목록포인트 사용내역 목록
일시
소계소계
보유포인트
-

보유 포인트

-
- 창닫기 + 창닫기
diff --git a/css/def.css b/css/def.css index 57f0e7730..8fa04dea5 100644 --- a/css/def.css +++ b/css/def.css @@ -23,7 +23,8 @@ hr {display:none} /* 기본테이블 */ table {margin-bottom:20px;width:100%;border-collapse:collapse;border-spacing:0} -tfoot td {background:#f9f9f5;font-weight:bold;text-align:center} +tfoot th {border-top:1px solid #c9c9c9;border-bottom:1px solid #c9c9c9} +tfoot td {border-color:#c9c9c9;background:#f9f9f5;font-weight:bold;text-align:center} caption {padding:0 0 10px;text-align:left} .caption_desc {font-size:0.75em} th {padding:12px 0 8px;border-top:3px solid #666;border-bottom:1px solid #a9a9a9;font-size:0.75em} @@ -209,9 +210,10 @@ a {color:#000;text-decoration:none} .btn03 {display:inline-block;padding:0 10px;height:24px;border:1px solid #555;background:#555;color:#fff;font-size:0.75em;text-decoration:none;line-height:2.2em} .btn02:hover, .btn02:focus {} -.btn_confirm {text-align:center} +.btn_confirm {text-align:center} /* 서식단계 진행 */ .btn_submit {padding:0 15px;height:30px;border:0;background:#ff3061;color:#fff;font-size:0.9em;letter-spacing:-0.1em;vertical-align:top} .btn_cancel {display:inline-block;padding:0 10px;height:28px;border:1px solid #ccc;background:#fafafa;color:#000;font-size:0.75em;text-decoration:none;line-height:2.5em} +.btn_window {padding:10px 5% 20px;background:#494949;text-align:right} /* 새창용 */ /* 폼 테이블 */ .frm_tbl {} @@ -402,7 +404,7 @@ a {color:#000;text-decoration:none} #new_search legend {margin:0;padding:0;width:0;height:0;border:0;overflow:hidden} /* 새창 공통 */ -.new_win h1 {padding:10px 30px;background:#393936;color:#fff;font-size:1.2em} +.new_win h1 {padding:20px 30px 10px;background:#494949;color:#fff;font-size:1em} .new_win h1 a {color:#fff} .new_win article h1 {background:transparent;color:#000} .new_win h2 {font-size:1em} @@ -416,7 +418,7 @@ a {color:#000;text-decoration:none} .new_win_ul a:focus {background:#faf9f5} /* 포인트 내역 */ -#point p {text-align:center} +#point table {margin-bottom:0} #point .td_datetime {width:150px} /* 쪽지 */ @@ -443,7 +445,7 @@ a {color:#000;text-decoration:none} #memo_write textarea {height:100px} /* pagination */ -.pg {clear:both;margin:0 0 10px;padding-top:20px;font-size:0.75em;text-align:center} +.pg {clear:both;margin:0 0 20px;padding-top:20px;font-size:0.75em;text-align:center} .pg_wrap {display:inline-block;border:1px solid #ddd;letter-spacing:-4px} .pg_page, .pg_current {display:inline-block;padding:0 12px;height:30px;background:#fff;color:#000;letter-spacing:0;line-height:2.6em;vertical-align:middle} .pg_page {background:#f9f9f9;text-decoration:none} From 6a5d1697f7d526614e6c181620936b672c9bf0ca Mon Sep 17 00:00:00 2001 From: whitedot Date: Fri, 11 Jan 2013 17:53:56 +0900 Subject: [PATCH 27/40] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90:=20=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=EC=95=84=EC=9B=83=20=EC=8A=A4=ED=83=80=EC=9D=BC,=20pg?= =?UTF-8?q?=20=ED=99=9C=EC=84=B1=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/def.css | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/css/def.css b/css/def.css index 8fa04dea5..d613f0cdf 100644 --- a/css/def.css +++ b/css/def.css @@ -97,9 +97,9 @@ a {color:#000;text-decoration:none} #snb ul {margin:0;padding:0;list-style:none} /* 아웃로그인 */ -.outlogin {position:relative;border-bottom:1px solid #d9d9d9;border-left:1px solid #bbb;background:#f0f3f6;line-height:1em} +.outlogin {position:relative;border-bottom:1px solid #bbb;border-left:1px solid #bbb;background:#f0f3f6;line-height:1em} .outlogin h2 {margin:0;padding:0;height:0;overflow:hidden} -/* 로그인 전 */ +/* 아웃로그인 전 */ #ol_before {padding:15px 10px 0;width:199px;font-size:0.7em} #ol_before fieldset {margin:0;padding:0;border:0;background:transparent} #ol_before legend {position:absolute;padding:0;width:0;height:0;border:0;background:transparent;overflow:hidden} @@ -115,18 +115,18 @@ a {color:#000;text-decoration:none} #ol_before li {float:left;margin-right:5px} #ol_before a {color:#696969;letter-spacing:-0.1em} #ol_submit {position:absolute;top:42px;right:12px;width:60px;height:24px;border:1px solid #b7b7b7;background:#fff;font-size:1em;font-weight:bold;letter-spacing:-0.1em;line-height:2em} -/* 로그인 후 */ +/* 아웃로그인 후 */ #ol_after {padding-top:15px;width:219px;color:#000;font-size:0.75em} -#ol_after header {padding:0 0 13px;border-bottom:1px solid #dedace;text-align:center} +#ol_after header {padding:0 0 13px;border-bottom:1px solid #efeada;background:#f8f8f8;text-align:center} #ol_after ul {padding:5px 0;background:#fff} -#ol_after li a {display:block;position:relative;padding:7px 20px 7px 19px} -#ol_after li span {position:absolute;top:7px;right:19px;color:#ff3061} -#ol_after footer {padding:7px 0 10px;border-top:1px solid #dedace;text-align:center} +#ol_after li a {display:block;position:relative;padding:7px 15px 7px 14px} +#ol_after li span {position:absolute;top:7px;right:14px;color:#ff3061} +#ol_after footer {padding:7px 0 10px;border-top:1px solid #efeada;background:#f8f8f8;text-align:center} #ol_after footer a {display:inline-block;padding:0 10px} /* 설문조사 */ -#poll {width:219px;border-bottom:1px solid #d9d9d9;border-left:1px solid #bbb;background:#fff;font-size:0.75em} -#poll header {padding:10px 10px 1px;border-bottom:1px solid #efeada;background:#f0f3f6} +#poll {width:219px;border-bottom:1px solid #bbb;border-left:1px solid #bbb;background:#fff;font-size:0.75em} +#poll header {padding:10px 10px 1px;border-bottom:1px solid #efeada;background:#f8f8f8} #poll h2 {display:inline-block;margin:0;font-size:1em} #poll p {padding:0} #poll ul {margin:10px} @@ -451,4 +451,4 @@ a {color:#000;text-decoration:none} .pg_page {background:#f9f9f9;text-decoration:none} .pg_start, .pg_prev {border-right:1px solid #ddd} .pg_end, .pg_next {border-left:1px solid #ddd} -.pg_current {background:#ff3061;color:#fff} +.pg_current {background:#333;color:#fff} From c24f9bcda297da93c0028621c1a3080a2f36108e Mon Sep 17 00:00:00 2001 From: whitedot Date: Fri, 11 Jan 2013 17:56:40 +0900 Subject: [PATCH 28/40] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90:=20=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=EC=95=84=EC=9B=83=20=ED=95=98=EB=8B=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/def.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/def.css b/css/def.css index d613f0cdf..32122909b 100644 --- a/css/def.css +++ b/css/def.css @@ -166,7 +166,7 @@ a {color:#000;text-decoration:none} /* 레이아웃 하단 */ #footer {z-index:1;position:relative;padding:15px 0 20px;border-top:1px solid #bbb;color:#595959;font-size:0.75em} #footer h1 {margin:0;height:0;overflow:hidden} -#footer section {margin-left:30px} +#footer section {margin-left:20px} #footer h2 {margin:0;width:100px;color:#000;font-size:1em} #footer a {color:#595959} @@ -194,7 +194,7 @@ a {color:#000;text-decoration:none} #popular li {float:left;margin-right:20px} /* 카피라이트 */ -#footer p {position:absolute;top:25px;right:30px} +#footer p {padding-left:20px} /* ##################################################################### 스킨 및 컨텐츠 */ /* 공통 */ From ec347b2d58c4f4bcdcb14a0f766053c79c188be6 Mon Sep 17 00:00:00 2001 From: whitedot Date: Fri, 11 Jan 2013 17:57:16 +0900 Subject: [PATCH 29/40] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90:=20=EC=84=A4?= =?UTF-8?q?=EB=AC=B8=EC=A1=B0=EC=82=AC=EC=8A=A4=ED=82=A8=20=ED=88=AC?= =?UTF-8?q?=ED=91=9C=ED=95=98=EA=B8=B0=20=EB=B2=84=ED=8A=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/def.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/def.css b/css/def.css index 32122909b..eb6b4a59b 100644 --- a/css/def.css +++ b/css/def.css @@ -132,7 +132,7 @@ a {color:#000;text-decoration:none} #poll ul {margin:10px} #poll li {margin:7px 0} #poll footer {padding:10px 10px 15px;text-align:center} -#poll footer input {padding:0 15px;height:24px;border:0;background:#ff3061;color:#fff;font-size:0.9em;letter-spacing:-0.1em;vertical-align:top} +#poll footer input {padding:0 15px;height:24px;border:0;background:#494936;color:#fff;font-size:0.9em;letter-spacing:-0.1em;vertical-align:top} #poll footer a {display:inline-block;padding:0 5px;height:22px;border:1px solid #b7b7b7;background:#fff;font-size:0.9em;vertical-align:top;letter-spacing:-0.1em;line-height:2.1em} /* 설문조사 결과 (새창) */ #poll_result section {margin:0 auto 20px;padding:10px;width:90%} From c974f0e9edb32498139e4de12f3f6516f21d8114 Mon Sep 17 00:00:00 2001 From: whitedot Date: Fri, 11 Jan 2013 17:59:12 +0900 Subject: [PATCH 30/40] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90:=20=EC=95=84?= =?UTF-8?q?=EC=9B=83=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EB=A1=9C=EA=B7=B8?= =?UTF-8?q?=EC=9D=B8=ED=9B=84=20=ED=97=A4=EB=8D=94=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/def.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/def.css b/css/def.css index eb6b4a59b..7c5f63ebc 100644 --- a/css/def.css +++ b/css/def.css @@ -116,8 +116,8 @@ a {color:#000;text-decoration:none} #ol_before a {color:#696969;letter-spacing:-0.1em} #ol_submit {position:absolute;top:42px;right:12px;width:60px;height:24px;border:1px solid #b7b7b7;background:#fff;font-size:1em;font-weight:bold;letter-spacing:-0.1em;line-height:2em} /* 아웃로그인 후 */ -#ol_after {padding-top:15px;width:219px;color:#000;font-size:0.75em} -#ol_after header {padding:0 0 13px;border-bottom:1px solid #efeada;background:#f8f8f8;text-align:center} +#ol_after {width:219px;color:#000;font-size:0.75em} +#ol_after header {padding:15px 0 13px;border-bottom:1px solid #efeada;background:#f8f8f8;text-align:center} #ol_after ul {padding:5px 0;background:#fff} #ol_after li a {display:block;position:relative;padding:7px 15px 7px 14px} #ol_after li span {position:absolute;top:7px;right:14px;color:#ff3061} From e1906d38a254b16c691339f259955fac59671166 Mon Sep 17 00:00:00 2001 From: whitedot Date: Fri, 11 Jan 2013 18:27:21 +0900 Subject: [PATCH 31/40] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90:=20=EC=95=84?= =?UTF-8?q?=EC=9B=83=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EB=A1=9C=EA=B7=B8?= =?UTF-8?q?=EC=9D=B8=20=ED=9B=84=20=EC=8A=A4=ED=83=80=EC=9D=BC=20=EC=9E=91?= =?UTF-8?q?=EC=97=85=20=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/def.css | 17 +++++++++++------ skin/outlogin/neo/outlogin.skin.2.php | 20 +++++++++++--------- 2 files changed, 22 insertions(+), 15 deletions(-) diff --git a/css/def.css b/css/def.css index 7c5f63ebc..b0760d470 100644 --- a/css/def.css +++ b/css/def.css @@ -117,12 +117,17 @@ a {color:#000;text-decoration:none} #ol_submit {position:absolute;top:42px;right:12px;width:60px;height:24px;border:1px solid #b7b7b7;background:#fff;font-size:1em;font-weight:bold;letter-spacing:-0.1em;line-height:2em} /* 아웃로그인 후 */ #ol_after {width:219px;color:#000;font-size:0.75em} -#ol_after header {padding:15px 0 13px;border-bottom:1px solid #efeada;background:#f8f8f8;text-align:center} -#ol_after ul {padding:5px 0;background:#fff} -#ol_after li a {display:block;position:relative;padding:7px 15px 7px 14px} -#ol_after li span {position:absolute;top:7px;right:14px;color:#ff3061} -#ol_after footer {padding:7px 0 10px;border-top:1px solid #efeada;background:#f8f8f8;text-align:center} -#ol_after footer a {display:inline-block;padding:0 10px} +#ol_after_hd {padding:15px 0 13px;border-bottom:1px solid #efeada;background:#f8f8f8;text-align:center} +#ol_after ul {margin:0;padding:0;zoom:1} +#ol_after ul:after {display:block;visibility:hidden;clear:both;content:""} +#ol_after li {float:left} +#ol_after_rec {background:#fff} +#ol_after_rec a {display:inline-block;width:60px;height:60px;vertical-align:top} +#ol_after_rec #ol_after_pt {width:97px;border-right:1px solid #efeada;border-left:1px solid #efeada} +#ol_after_ft {border-top:1px solid #efeada;background:#f8f8f8;text-align:center} +#ol_after_ft a {display:inline-block;padding:7px 0 !important;text-align:center} +#ol_after_info {width:109px;border-right:1px solid #efeada} +#ol_after_logout {width:109px} /* 설문조사 */ #poll {width:219px;border-bottom:1px solid #bbb;border-left:1px solid #bbb;background:#fff;font-size:0.75em} diff --git a/skin/outlogin/neo/outlogin.skin.2.php b/skin/outlogin/neo/outlogin.skin.2.php index 2668d267e..b2de79327 100644 --- a/skin/outlogin/neo/outlogin.skin.2.php +++ b/skin/outlogin/neo/outlogin.skin.2.php @@ -4,19 +4,21 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
-
-

나의 회원정보

+
+

나의 이용정보

관리자
-
From 66cbb0bed079acae36a4da37f26d9bebf02c40f6 Mon Sep 17 00:00:00 2001 From: whitedot Date: Fri, 11 Jan 2013 18:32:49 +0900 Subject: [PATCH 32/40] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90:=20=EC=83=88?= =?UTF-8?q?=EC=B0=BD=20=EC=BB=A8=ED=85=90=EC=B8=A0=20=EB=B2=84=ED=8A=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/point.php | 2 +- css/def.css | 6 ++++-- skin/member/neo/memo_form.skin.php | 4 ++-- skin/member/neo/memo_view.skin.php | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/bbs/point.php b/bbs/point.php index 6973c4fa0..8b6882fcd 100644 --- a/bbs/point.php +++ b/bbs/point.php @@ -106,7 +106,7 @@ for($i=0; $row=sql_fetch_array($result); $i++) { diff --git a/css/def.css b/css/def.css index b0760d470..bd9fe2ba5 100644 --- a/css/def.css +++ b/css/def.css @@ -219,6 +219,8 @@ a {color:#000;text-decoration:none} .btn_submit {padding:0 15px;height:30px;border:0;background:#ff3061;color:#fff;font-size:0.9em;letter-spacing:-0.1em;vertical-align:top} .btn_cancel {display:inline-block;padding:0 10px;height:28px;border:1px solid #ccc;background:#fafafa;color:#000;font-size:0.75em;text-decoration:none;line-height:2.5em} .btn_window {padding:10px 5% 20px;background:#494949;text-align:right} /* 새창용 */ +.btn_window a {display:inline-block;padding:0 10px;height:28px;border:1px solid #ccc;background:#fafafa;color:#000;font-size:0.75em;text-decoration:none;line-height:2.5em} + /* 폼 테이블 */ .frm_tbl {} @@ -415,10 +417,10 @@ a {color:#000;text-decoration:none} .new_win h2 {font-size:1em} .new_win table {margin:0 auto 30px;width:90%} .new_win fieldset {margin:0 auto 30px;width:90%} -.new_win_ul {margin:-30px 0 20px 0;padding:0 0 0 30px;border-bottom:1px solid #ddd;background:#fff;font-size:0.75em;list-style:none;zoom:1} +.new_win_ul {margin:-20px 0 20px 0;padding:0 0 0 30px;border-bottom:1px solid #ddd;background:#fff;font-size:0.75em;list-style:none;zoom:1} .new_win_ul:after {display:block;visibility:hidden;clear:both;content:""} .new_win_ul li {float:left;margin-left:-1px} -.new_win_ul a {display:block;padding:10px;border-right:1px solid #eee;border-left:1px solid #eee;color:#595959;font-family:"dotum";font-size:0.875em;font-weight:bold} +.new_win_ul a {display:block;padding:10px;border-right:1px solid #eee;border-left:1px solid #eee;color:#595959;font-family:"dotum";font-size:1em;font-weight:bold} .new_win_ul a:hover, .new_win_ul a:focus {background:#faf9f5} diff --git a/skin/member/neo/memo_form.skin.php b/skin/member/neo/memo_form.skin.php index cba36b0d9..4b2aae4f4 100644 --- a/skin/member/neo/memo_form.skin.php +++ b/skin/member/neo/memo_form.skin.php @@ -37,8 +37,8 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가 왼쪽의 글자를 입력하세요. -
- + diff --git a/skin/member/neo/memo_view.skin.php b/skin/member/neo/memo_view.skin.php index 1cc3e69a9..f42bf1a2c 100644 --- a/skin/member/neo/memo_view.skin.php +++ b/skin/member/neo/memo_view.skin.php @@ -24,7 +24,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가

-
+
이전쪽지 다음쪽지 답장 From f5686322c6d7e91ec8893367dca78ee058e67633 Mon Sep 17 00:00:00 2001 From: whitedot Date: Fri, 11 Jan 2013 18:35:57 +0900 Subject: [PATCH 33/40] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90:=20=EC=95=84?= =?UTF-8?q?=EC=9B=83=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EB=A1=9C=EA=B7=B8?= =?UTF-8?q?=EC=9D=B8=20=ED=9B=84=20=EC=8A=A4=ED=83=80=EC=9D=BC=20=EC=9E=91?= =?UTF-8?q?=EC=97=85=20=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- skin/outlogin/neo/outlogin.skin.2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skin/outlogin/neo/outlogin.skin.2.php b/skin/outlogin/neo/outlogin.skin.2.php index b2de79327..d9c67c4a0 100644 --- a/skin/outlogin/neo/outlogin.skin.2.php +++ b/skin/outlogin/neo/outlogin.skin.2.php @@ -12,7 +12,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가