5.3 버전 내용 적용
This commit is contained in:
@ -9,7 +9,7 @@ add_stylesheet('<link rel="stylesheet" href="'.$search_skin_url.'/style.css">',
|
||||
<input type="hidden" name="srows" value="<?php echo $srows ?>">
|
||||
<fieldset id="sch_res_detail">
|
||||
<legend>상세검색</legend>
|
||||
<div>
|
||||
<div class="sch_wr">
|
||||
<?php echo $group_select ?>
|
||||
<script>document.getElementById("gr_id").value = "<?php echo $gr_id ?>";</script>
|
||||
|
||||
@ -21,11 +21,10 @@ add_stylesheet('<link rel="stylesheet" href="'.$search_skin_url.'/style.css">',
|
||||
<option value="mb_id"<?php echo get_selected($_GET['sfl'], "mb_id") ?>>회원아이디</option>
|
||||
<option value="wr_name"<?php echo get_selected($_GET['sfl'], "wr_name") ?>>이름</option>
|
||||
</select>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
|
||||
<input type="text" name="stx" value="<?php echo $text_stx ?>" class="frm_input" required class="required" maxlength="20">
|
||||
<input type="submit" class="btn_submit" value="검색">
|
||||
<input type="text" name="stx" id="stx" value="<?php echo $text_stx ?>" class="frm_input" required maxlength="20">
|
||||
<button type="submit" class="btn_submit" value="검색"><i class="fa fa-search" aria-hidden="true"></i></button>
|
||||
|
||||
<script>
|
||||
function fsearch_submit(f)
|
||||
@ -72,12 +71,12 @@ add_stylesheet('<link rel="stylesheet" href="'.$search_skin_url.'/style.css">',
|
||||
if ($board_count) {
|
||||
?>
|
||||
<section id="sch_res_ov">
|
||||
<h2><?php echo $stx ?> 전체검색 결과</h2>
|
||||
<h2><strong class="sch_word"><?php echo $stx ?></strong> 전체검색 결과</h2>
|
||||
<dl>
|
||||
<dt>게시판</dt>
|
||||
<dd><strong class="sch_word"><?php echo $board_count ?>개</strong></dd>
|
||||
<dd><strong><?php echo $board_count ?>개</strong></dd>
|
||||
<dt>게시물</dt>
|
||||
<dd><strong class="sch_word"><?php echo number_format($total_count) ?>개</strong></dd>
|
||||
<dd><strong><?php echo number_format($total_count) ?>개</strong></dd>
|
||||
</dl>
|
||||
<p><?php echo number_format($page) ?>/<?php echo number_format($total_page) ?> 페이지 열람 중</p>
|
||||
</section>
|
||||
@ -101,7 +100,7 @@ add_stylesheet('<link rel="stylesheet" href="'.$search_skin_url.'/style.css">',
|
||||
<?php } } ?>
|
||||
|
||||
<hr>
|
||||
|
||||
<div class="list_01">
|
||||
<?php if ($stx && $board_count) { ?><section class="sch_res_list"><?php } ?>
|
||||
<?php
|
||||
$k=0;
|
||||
@ -113,7 +112,7 @@ add_stylesheet('<link rel="stylesheet" href="'.$search_skin_url.'/style.css">',
|
||||
for ($i=0; $i<count($list[$idx]) && $k<$rows; $i++, $k++) {
|
||||
if ($list[$idx][$i]['wr_is_comment'])
|
||||
{
|
||||
$comment_def = '<span class="cmt_def">댓글</span>';
|
||||
$comment_def = '<span class="cmt_def"><i class="fa fa-commenting-o" aria-hidden="true"></i><span class="sound_only">댓글</span></span> ';
|
||||
$comment_href = '#c_'.$list[$idx][$i]['wr_id'];
|
||||
}
|
||||
else
|
||||
@ -123,19 +122,25 @@ add_stylesheet('<link rel="stylesheet" href="'.$search_skin_url.'/style.css">',
|
||||
}
|
||||
?>
|
||||
<li>
|
||||
<a href="<?php echo $list[$idx][$i]['href'] ?><?php echo $comment_href ?>" class="sch_res_title"><?php echo $comment_def ?><?php echo $list[$idx][$i]['subject'] ?></a>
|
||||
<a href="<?php echo $list[$idx][$i]['href'] ?><?php echo $comment_href ?>" target="_blank">새창</a>
|
||||
<div class="sch_res_title">
|
||||
<a href="<?php echo $list[$idx][$i]['href'] ?><?php echo $comment_href ?>"><?php echo $comment_def ?><?php echo $list[$idx][$i]['subject'] ?></a>
|
||||
<a href="<?php echo $list[$idx][$i]['href'] ?><?php echo $comment_href ?>" target="_blank" class="sch_res_new"><i class="fa fa-share-square-o" aria-hidden="true"></i><span class="sound_only">새창</span></a>
|
||||
</div>
|
||||
<p><?php echo $list[$idx][$i]['content'] ?></p>
|
||||
<?php echo $list[$idx][$i]['name'] ?>
|
||||
<span class="sch_datetime"><?php echo $list[$idx][$i]['wr_datetime'] ?></span>
|
||||
<div class="sch_res_info">
|
||||
<?php echo $list[$idx][$i]['name'] ?>
|
||||
<span class="sch_datetime"><i class="fa fa-clock-o" aria-hidden="true"></i> <?php echo $list[$idx][$i]['wr_datetime'] ?></span>
|
||||
</div>
|
||||
</li>
|
||||
<?php } ?>
|
||||
</ul>
|
||||
<div class="sch_more"><a href="./board.php?bo_table=<?php echo $search_table[$idx] ?>&<?php echo $search_query ?>"><strong><?php echo $bo_subject[$idx] ?></strong> 결과 더보기</a></div>
|
||||
<div class="sch_more"><a href="./board.php?bo_table=<?php echo $search_table[$idx] ?>&<?php echo $search_query ?>"><i class="fa fa-plus-circle" aria-hidden="true"></i> <strong><?php echo $bo_subject[$idx] ?></strong> 결과 더보기</a></div>
|
||||
|
||||
<hr>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($stx && $board_count) { ?></section><?php } ?>
|
||||
</div>
|
||||
|
||||
<?php echo $write_pages ?>
|
||||
|
||||
|
||||
@ -1,33 +1,43 @@
|
||||
@charset "utf-8";
|
||||
/* SIR 지운아빠 */
|
||||
|
||||
/* 전체검색결과 스킨 */
|
||||
#sch_res_detail {padding:0 0 10px;border-bottom:1px solid #e9e9e9;text-align:center}
|
||||
#sch_res_detail {margin:10px;text-align:center}
|
||||
#sch_res_detail legend {position:absolute;font-size:0;line-height:0;overflow:hidden}
|
||||
#sch_res_detail div {margin:0 0 5px}
|
||||
#sch_res_detail .frm_input {height:2.5em;line-height:2.5em}
|
||||
#sch_res_detail .sch_wr {position:relative;border:1px solid #bdc2d8;background:#fff;margin:0 0 5px}
|
||||
#sch_res_detail select{width:50%;float:left;height:40px;border:0}
|
||||
#sch_res_detail #sfl{border-left:1px solid #e2e2e2;}
|
||||
#sch_res_detail .frm_input {position:relative;width:100%;border:0;border-top:1px solid #e2e2e2;border-radius:0;clear:both}
|
||||
#sch_res_detail .btn_submit{position:absolute;bottom:0;right:0;width:40px;height:40px;background:none;color:#000;font-size:15px}
|
||||
|
||||
#sch_res_ov {padding:10px;border-bottom:1px solid #e9e9e9;background:#f5f6fa;zoom:1}
|
||||
#sch_res_ov {margin: 10px;padding:20px;background:#e4e4e4;text-align:center;zoom:1}
|
||||
#sch_res_ov:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#sch_res_ov h2 {margin:0 0 5px}
|
||||
#sch_res_ov dl {margin:0 0 5px;zoom:1}
|
||||
#sch_res_ov dl:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#sch_res_ov dt {float:left}
|
||||
#sch_res_ov dd {float:left;margin:0 10px 0 5px}
|
||||
#sch_res_ov p {margin:0;padding:0}
|
||||
#sch_res_ov h2 {font-size:1.25em;margin:0 0 5px}
|
||||
#sch_res_ov dl {margin:0 0 5px;display:inline-block;;zoom:1}
|
||||
#sch_res_ov dt {display:inline-block}
|
||||
#sch_res_ov dd {display:inline-block;margin:0 2px 0 5px}
|
||||
#sch_res_ov p {margin:0;padding:0;color:#666;font-size:0.92em}
|
||||
|
||||
#sch_res_board {margin:0 0 10px;padding:0;list-style:none;zoom:1}
|
||||
#sch_res_board {margin: 10px;padding-left:1px;zoom:1}
|
||||
#sch_res_board:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#sch_res_board a {display:block;position:relative;margin-left:-1px;padding:5px 10px;border-bottom:1px solid #e9e9e9;text-decoration:none;letter-spacing:-0.1em;line-height:1.2em;cursor:pointer}
|
||||
#sch_res_board a:focus, #sch_res_board a:hover, #sch_res_board a:active {text-decoration:none}
|
||||
#sch_res_board .cnt_cmt {font-weight:normal !important}
|
||||
#sch_res_board li {display:inline-block;float:left;margin:3px 5px 3px 0}
|
||||
#sch_res_board a {display:block;line-height:24px;border-radius:13px;padding:0 10px;background:#fff}
|
||||
#sch_res_board .sch_on {background:#4162ff;color:#fff;
|
||||
-webkit-box-shadow:0 0 5px rgba(65,98,255,0.8);
|
||||
-moz-box-shadow:0 0 5px rgba(65,98,255,0.8);
|
||||
box-shadow: 0 0 8px rgba(65,98,255,0.8);}
|
||||
|
||||
|
||||
.sch_res_list {margin:0 0 10px;padding:10px 0}
|
||||
.sch_res_list h2 {margin:0 0 10px;padding:0 10px;font-size:1.2em}
|
||||
.sch_res_list h2 {margin:0 0 10px;font-size:1.083m}
|
||||
.sch_res_list ul {margin:0;padding:0;list-style:none}
|
||||
.sch_res_list li {margin:0 0 10px;padding:0 10px 10px;border-bottom:1px solid #e9e9e9}
|
||||
.sch_res_list a {text-decoration:none}
|
||||
.sch_res_title {display:inline-block;margin:0 0 5px}
|
||||
.sch_res_list p {margin:0 0 10px;line-height:1.8em}
|
||||
.sch_more {padding:0 10px;text-align:right}
|
||||
.sch_on {color:#ff3061}
|
||||
.sch_res_title {display:block;font-weight:bold;padding:10px 0;padding-right:30px;position:relative}
|
||||
.sch_res_info{line-height:28px;border-top:1px solid #eee;padding:3px 0 0;margin: 10px 0 0;color:#666 }
|
||||
.sch_res_info:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
.sch_res_new{position:absolute;top:10px;right:0;font-size:0.92em;color:#777;width:20px;height:20px;line-height:20px;display:block;background:#eee;text-align:center}
|
||||
.sch_res_list p {margin:0 0 10px;line-height:1.4em;color:#777;font-size:0.92em}
|
||||
.sch_more {padding:0 0 30px;font-size:0.92em;text-align:right }
|
||||
.sch_more a{;color:#f2664f}
|
||||
.sch_more i{font-size:13px}
|
||||
.sch_datetime{float:right;font-style:italic}
|
||||
.sch_res_info .profile_img img{border-radius:50%}
|
||||
Reference in New Issue
Block a user