영카트 5.4 버전 내용 적용

This commit is contained in:
thisgun
2019-12-02 10:29:31 +09:00
parent 8517e1e31e
commit 9b0078350d
840 changed files with 36442 additions and 28088 deletions

View File

@ -9,16 +9,20 @@ add_stylesheet('<link rel="stylesheet" href="'.$new_skin_url.'/style.css">', 0);
<fieldset id="new_sch">
<legend>상세검색</legend>
<form name="fnew" method="get">
<?php echo $group_select ?>
<label for="view" class="sound_only">검색대상</label>
<select name="view" id="view" onchange="select_change()">
<option value="">전체게시물
<option value="w">원글만
<option value="c">코멘트만
</select>
<input type="text" name="mb_id" value="<?php echo $mb_id ?>" id="mb_id" placeholder="검색어(필수)" required class="frm_input ">
<button type="submit" value="검색" class="btn_submit"><i class="fa fa-search" aria-hidden="true"></i></button>
<?php echo $group_select ?>
<label for="view" class="sound_only">검색대상</label>
<select name="view" id="view" onchange="select_change()">
<option value="">전체게시물
<option value="w">원글만
<option value="c">코멘트만
</select>
<div class="ipt_sch">
<label for="mb_id" class="sound_only">검색어<strong class="sound_only">필수</strong></label>
<input type="text" name="mb_id" value="<?php echo $mb_id ?>" id="mb_id" placeholder="검색어를 입력하세요" required class="frm_input">
<button type="submit" class="btn_submit"><i class="fa fa-search" aria-hidden="true"></i></button>
</div>
</form>
<p>회원 아이디만 검색 가능</p>
<script>
function select_change()
{
@ -31,7 +35,7 @@ add_stylesheet('<link rel="stylesheet" href="'.$new_skin_url.'/style.css">', 0);
<!-- } 전체게시물 검색 끝 -->
<!-- 전체게시물 목록 시작 { -->
<div class="list_01" id="new_list">
<div id="fnewlist" class="new_list">
<ul>
<?php
@ -42,14 +46,17 @@ add_stylesheet('<link rel="stylesheet" href="'.$new_skin_url.'/style.css">', 0);
$wr_subject = get_text(cut_str($list[$i]['wr_subject'], 80));
?>
<li>
<a href="<?php echo get_pretty_url($list[$i]['bo_table']); ?>" class="new_board"><?php echo $bo_subject ?></a>
<a href="<?php echo $list[$i]['href'] ?>" class="new_tit"><?php echo $list[$i]['comment'] ?><?php echo $wr_subject ?></a>
<a href="./board.php?bo_table=<?php echo $list[$i]['bo_table'] ?>" class="new_board"><i class="fa fa-list-alt" aria-hidden="true"></i> <?php echo $bo_subject ?></a>
<span class="new_date"><i class="fa fa-clock-o" aria-hidden="true"></i> <?php echo $list[$i]['datetime2'] ?></span>
<div class="new_info">
<span class="sound_only">작성자</span><?php echo $list[$i]['name'] ?>
<span class="new_date"><i class="fa fa-clock-o" aria-hidden="true"></i> <?php echo $list[$i]['datetime2'] ?></span>
</div>
</li>
<?php } ?>
<?php if ($i == 0)
echo '<li class="empty_table">게시물이 없습니다.</li>';
echo '<li class="empty_table">게시물이 없습니다.</li>';
?>
</ul>
</div>

View File

@ -1,11 +1,20 @@
@charset "utf-8";
/* 새글 */
#new_sch {margin:10px;border:1px solid #bdc2d8;background:#fff;position:relative}
#new_sch select{float:left;width:50%;border:0;height:40px}
#new_sch #view{border-left:1px solid #e2e2e2}
#new_sch .frm_input {border:0;border-top:1px solid #e2e2e2;width:100% }
#new_sch .btn_submit {position:absolute;bottom:0;right:0;width:40px;height:40px;background:none;color:#000;font-size:15px}
#new_list .new_tit{display:block;font-weight:bold;margin:0 0 5px;font-size:1.083em}
#new_list .new_date{float:right;color:#666;font-style:italic}
#new_list .new_board{color:#3ca1ff}
/* 최근게시물 스킨 (new) */
#new_sch {background:#fff;text-align:center;margin:10px 0;border-bottom:1px solid #ddd}
#new_sch legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
#new_sch form {padding:15px}
#new_sch select {float:left;border:1px solid #d0d3db;width:49.5%;height:45px;padding:0 5px;border-radius:0}
#new_sch select#gr_id {margin-right:1%}
#new_sch .ipt_sch {clear:both;position:relative;padding-top:10px}
#new_sch .frm_input {border:1px solid #d0d3db;width:100%;height:45px;border-radius:0}
#new_sch .sch_wr {position:relative;display:inline-block}
#new_sch .btn_submit {position:absolute;top:10px;right:0;padding:0 10px;height:45px;width:45px;font-size:1.4em;font-weight:bold;color:#434a54;background:transparent}
#new_sch p {padding:12px 0;font-size:0.95em;text-align:center;background:#f9fbfc;color:#3a8afd;letter-spacing:-0.1em}
.new_list li {padding:15px;background:#fff;border-bottom:1px solid #e8eaee}
.new_list .new_tit {display:block;line-height:24px;margin:5px 0;font-weight:bold;font-size:1.2em}
.new_list .profile_img img {border-radius:50%}
.new_list .new_info {color:#646464;font-weight:normal}
.new_list .new_date {margin-left:5px}
.new_list .new_board {background:#eeeaf8;color:#ac92ec;padding:3px 4px;border-radius:5px;font-weight:normal}