사용자: 쪽지스킨 스타일

This commit is contained in:
whitedot
2013-01-30 13:40:41 +09:00
parent acc94a13e2
commit 142676f8c3
3 changed files with 23 additions and 14 deletions

View File

@ -96,7 +96,7 @@ pre {overflow-x:scroll;font-size:1.1em}
.btn_cancel {display:inline-block;padding:0 10px;height:22px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;line-height:2em}
.btn_frmline {padding:0 7px 0 5px;height:22px;border:0;background:#109ff1;color:#fff;letter-spacing:-0.1em;vertical-align:top;line-height:2em}
.btn_win {clear:both;margin-bottom:20px;text-align:center} /* 새창용 */
.btn_win a {display:inline-block;padding:0 10px;height:24px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;line-height:2em;cursor:pointer}
.btn_win a {display:inline-block;padding:0 10px;height:22px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;line-height:2em;cursor:pointer}
/* ///// 기본테이블 ///// */
table {margin-bottom:10px;width:100%;border-collapse:collapse;border-spacing:0}
@ -148,6 +148,7 @@ table a {color:#000;text-decoration:none}
.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 10px 8px;border-right:1px solid #595959;border-left:1px solid #595959;color:#fff;font-family:"dotum";font-weight:bold;text-decoration:none}
.new_win_desc {margin:0 auto;width:93%}
/* ///// 폼 컨트롤 ///// */
.fs_input,
@ -214,6 +215,11 @@ fieldset button {padding:0 15px;height:24px;border:0;background:#494949;color:#f
#mb_login section {margin:0 0 30px;padding:20px}
#mb_login section div {text-align:right}
/* 쪽지 */
#memo_view section {margin:0 auto 20px;padding:20px;width:87%}
#memo_write textarea {height:100px}
/* 회원 패스워드 확인 */
#mb_confirm {margin:100px auto;width:500px}
#mb_confirm h1 {margin:0 0 20px;font-size:1.3em}

View File

@ -14,7 +14,6 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<table>
<caption>
전체 <?=$kind_title?>쪽지 <?=$total_count?>통<br>
<span class="caption_desc">쪽지 보관일수는 최장 <?=$config['cf_memo_del']?>일 입니다.</span>
</caption>
<thead>
<tr>
@ -37,5 +36,9 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
</tbody>
</table>
<p class="new_win_desc">
쪽지 보관일수는 최장 <strong><?=$config['cf_memo_del']?></strong>일 입니다.
</p>
<div class="btn_win"><a href="javascript:;" onclick="window.close();">창닫기</a></div>
</div>

View File

@ -3,23 +3,23 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<div id="memo_view" class="new_win">
<h1>
<?
//$nick = cut_str($mb[mb_nick], $config[cf_cut_name]);
$nick = get_sideview($mb['mb_id'], $mb['mb_nick'], $mb['mb_email'], $mb['mb_homepage']);
if ($kind == "recv")
echo "{$nick}님께서 {$memo['me_send_datetime']}에 보내온 쪽지의 내용입니다.";
if ($kind == "send")
echo "{$nick}님께 {$memo['me_send_datetime']}에 보낸 쪽지의 내용입니다.";
?>
</h1>
<h1><?=$g4['title']?></h1>
<ul class="new_win_ul">
<li><a href="./memo.php?kind=recv">받은쪽지</a></li>
<li><a href="./memo.php?kind=send">보낸쪽지</a></li>
<li><a href="./memo_form.php">쪽지보내기</a></li>
</ul>
<section>
<h2>쪽지내용</h2>
<section class="cbg">
<h2>
<?
//$nick = cut_str($mb[mb_nick], $config[cf_cut_name]);
$nick = get_sideview($mb['mb_id'], $mb['mb_nick'], $mb['mb_email'], $mb['mb_homepage']);
if ($kind == "recv")
echo "{$nick}님께서 {$memo['me_send_datetime']}에 보내온 쪽지의 내용입니다.";
if ($kind == "send")
echo "{$nick}님께 {$memo['me_send_datetime']}에 보낸 쪽지의 내용입니다.";
?>
</h2>
<p>
<?=conv_content($memo['me_memo'], 0)?>
</p>