리빌더 부분 추가
This commit is contained in:
218
theme/rb.basic/skin/new/rb.new/new.skin.php
Normal file
218
theme/rb.basic/skin/new/rb.new/new.skin.php
Normal file
@ -0,0 +1,218 @@
|
||||
<?php
|
||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
|
||||
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
|
||||
$thumb_width = 0; //썸네일 가로 사이즈
|
||||
$thumb_height = 120; //썸네일 세로 사이즈
|
||||
|
||||
// 선택삭제으로 인해 셀합치기가 가변적으로 변함
|
||||
$colspan = 5;
|
||||
|
||||
if ($is_admin) $colspan++;
|
||||
|
||||
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||
add_stylesheet('<link rel="stylesheet" href="'.$new_skin_url.'/style.css?ver='.G5_TIME_YMDHIS.'">', 0);
|
||||
|
||||
|
||||
?>
|
||||
|
||||
<div class="rb_serch_skin">
|
||||
|
||||
<form name="fnew" method="get">
|
||||
<ul>
|
||||
<div class="faq_ser_wrap">
|
||||
<input type="text" name="mb_id" value="<?php echo $mb_id;?>" required id="mb_id" class="ser_inps font-B" placeholder="회원아이디 검색">
|
||||
<input type="hidden" name="view" value="<?php echo $view ?>">
|
||||
<button type="submit" value="검색" class="ser_btns">
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.49928 1.91687e-08C7.14387 0.000115492 5.80814 0.324364 4.60353 0.945694C3.39893 1.56702 2.36037 2.46742 1.57451 3.57175C0.788656 4.67609 0.278287 5.95235 0.0859852 7.29404C-0.106316 8.63574 0.0250263 10.004 0.469055 11.2846C0.913084 12.5652 1.65692 13.7211 2.63851 14.6557C3.6201 15.5904 4.81098 16.2768 6.11179 16.6576C7.4126 17.0384 8.78562 17.1026 10.1163 16.8449C11.447 16.5872 12.6967 16.015 13.7613 15.176L17.4133 18.828C17.6019 19.0102 17.8545 19.111 18.1167 19.1087C18.3789 19.1064 18.6297 19.0012 18.8151 18.8158C19.0005 18.6304 19.1057 18.3796 19.108 18.1174C19.1102 17.8552 19.0094 17.6026 18.8273 17.414L15.1753 13.762C16.1633 12.5086 16.7784 11.0024 16.9504 9.41573C17.1223 7.82905 16.8441 6.22602 16.1475 4.79009C15.4509 3.35417 14.3642 2.14336 13.0116 1.29623C11.659 0.449106 10.0952 -0.000107143 8.49928 1.91687e-08ZM1.99928 8.5C1.99928 6.77609 2.6841 5.12279 3.90308 3.90381C5.12207 2.68482 6.77537 2 8.49928 2C10.2232 2 11.8765 2.68482 13.0955 3.90381C14.3145 5.12279 14.9993 6.77609 14.9993 8.5C14.9993 10.2239 14.3145 11.8772 13.0955 13.0962C11.8765 14.3152 10.2232 15 8.49928 15C6.77537 15 5.12207 14.3152 3.90308 13.0962C2.6841 11.8772 1.99928 10.2239 1.99928 8.5Z" fill="#09244B" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</ul>
|
||||
|
||||
<?php if($config['cf_new_del'] > 0) { ?>
|
||||
<ul class="rb_faq_sub_tit">
|
||||
최근 <?php echo $config['cf_new_del'] ?>일 이내 등록된 새글 이에요.
|
||||
</ul>
|
||||
<?php } ?>
|
||||
|
||||
</form>
|
||||
|
||||
<div class="rb_bbs_wrap rb_bbs_wrap_new">
|
||||
<nav id="bo_cate" class="swiper-container swiper-container-category">
|
||||
<ul id="bo_cate_ul" class="swiper-wrapper swiper-wrapper-category">
|
||||
<li class="swiper-slide swiper-slide-category"><a href="./new.php?mb_id=<?php echo $mb_id ?>" <?php if($view == "") { ?>id="bo_cate_on"<?php } ?>>전체</a></li>
|
||||
<li class="swiper-slide swiper-slide-category"><a href="./new.php?mb_id=<?php echo $mb_id ?>&view=w" <?php if($view == "w") { ?>id="bo_cate_on"<?php } ?>>글</a></li>
|
||||
<li class="swiper-slide swiper-slide-category"><a href="./new.php?mb_id=<?php echo $mb_id ?>&view=c" <?php if($view == "c") { ?>id="bo_cate_on"<?php } ?>>댓글</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
$("#bo_cate_ul li").addClass("swiper-slide swiper-slide-category");
|
||||
});
|
||||
|
||||
var swiper = new Swiper('.swiper-container-category', {
|
||||
slidesPerView: 'auto', //가로갯수
|
||||
spaceBetween: 0, // 간격
|
||||
//slidesOffsetBefore: 40, //좌측여백
|
||||
//slidesOffsetAfter: 40, // 우측여백
|
||||
observer: true, //리셋
|
||||
observeParents: true, //리셋
|
||||
touchRatio: 1, // 드래그 가능여부
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<form name="fnewlist" id="fnewlist" method="post" action="#" onsubmit="return fnew_submit(this);">
|
||||
<input type="hidden" name="sw" value="move">
|
||||
<input type="hidden" name="view" value="<?php echo $view ?>">
|
||||
<input type="hidden" name="sfl" value="<?php echo $sfl; ?>">
|
||||
<input type="hidden" name="stx" value="<?php echo $stx; ?>">
|
||||
<input type="hidden" name="bo_table" value="<?php echo $bo_table; ?>">
|
||||
<input type="hidden" name="page" value="<?php echo $page; ?>">
|
||||
<input type="hidden" name="pressed" value="">
|
||||
|
||||
<div id="sch_result">
|
||||
<!--
|
||||
<section id="sch_res_ov">
|
||||
<h2><strong><?php echo $stx ?></strong> 전체글</h2>
|
||||
<ul>
|
||||
<li></li>
|
||||
<li></li>
|
||||
</ul>
|
||||
</section>
|
||||
-->
|
||||
|
||||
<section class="sch_res_list">
|
||||
<div class="search_board_result">
|
||||
<?php if ($is_admin) { ?>
|
||||
<div class="mt-30">
|
||||
<button type="submit" class="more_btn" onclick="document.pressed=this.title" title="선택삭제">선택삭제</button>
|
||||
<input type="checkbox" id="all_chk">
|
||||
<label for="all_chk"></label>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<ul>
|
||||
<?php
|
||||
for ($i=0; $i<count($list); $i++)
|
||||
{
|
||||
$num = $total_count - ($page - 1) * $config['cf_page_rows'] - $i;
|
||||
$gr_subject = cut_str($list[$i]['gr_subject'], 20);
|
||||
$bo_subject = cut_str($list[$i]['bo_subject'], 20);
|
||||
$wr_subject = get_text($list[$i]['wr_subject']);
|
||||
|
||||
$sec_txt = '<span style="opacity:0.6">작성자 및 관리자 외 열람할 수 없습니다.<br>비밀글 기능으로 보호된 글입니다.</span>';
|
||||
|
||||
//$wr_content = preg_replace("/<(.*?)\>/","",$list[$i]['wr_content']);
|
||||
//$wr_content = preg_replace("/ /","",$wr_content);
|
||||
$wr_content = strip_tags($list[$i]['wr_content']);
|
||||
|
||||
$thumb = get_list_thumbnail($list[$i]['bo_table'], $list[$i]['wr_id'], $thumb_width, $thumb_height, false, true);
|
||||
if($thumb['src']) {
|
||||
$img = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$thumb_width.'" height="'.$thumb_height.'">';
|
||||
}
|
||||
|
||||
if($list[$i]['comment']) {
|
||||
$list[$i]['comment'] = "[댓글]";
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<div class="new_ul_wrap">
|
||||
<li class="new_li_left" <?php if($is_admin) { ?>style="<?php if($thumb['src']) { ?>padding-right:130px;<?php } else { ?>padding-right:50px;<?php } ?>"<?php } else { ?>style="<?php if($thumb['src']) { ?>padding-right:80px;<?php } else { ?>padding-right:0px;<?php } ?><?php } ?>">
|
||||
<div class="sch_tit">
|
||||
<a href="<?php echo $list[$i]['href'] ?>" class="sch_res_title font-B"><?php echo $wr_subject ?></a>
|
||||
<a href="javascript:void(0);" class="pop_a_blank"> <?php echo $list[$i]['comment'] ?></a>
|
||||
</div>
|
||||
|
||||
<?php if (strstr($list[$i]['wr_option'], 'secret')) { ?>
|
||||
<span class="">
|
||||
<?php echo $sec_txt; ?>
|
||||
</span>
|
||||
<?php } else { ?>
|
||||
<span class="cut2">
|
||||
<?php echo $wr_content; ?>
|
||||
</span>
|
||||
<?php } ?>
|
||||
|
||||
<div class="sch_info">
|
||||
<span class="sch_datetime"><?php echo $list[$i]['wr_name'] ?> <?php echo $list[$i]['datetime'] ?> <a href="<?php echo get_pretty_url($list[$i]['bo_table']); ?>"><?php echo $bo_subject ?></a><!-- <a href="./new.php?gr_id=<?php echo $list[$i]['gr_id'] ?>"><?php echo $gr_subject ?></a>--></span>
|
||||
</div>
|
||||
</li>
|
||||
<li class="new_li_right">
|
||||
|
||||
<?php if($thumb['src']) { ?>
|
||||
<?php if (!strstr($list[$i]['wr_option'], 'secret')) { ?>
|
||||
<a href="<?php echo $list[$i]['href']; ?>"><?php echo $img; ?></a>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
<?php if ($is_admin) { ?>
|
||||
<input type="checkbox" name="chk_bn_id[]" value="<?php echo $i; ?>" id="chk_bn_id_<?php echo $i; ?>">
|
||||
<label for="chk_bn_id_<?php echo $i; ?>"></label>
|
||||
<input type="hidden" name="bo_table[<?php echo $i; ?>]" value="<?php echo $list[$i]['bo_table']; ?>">
|
||||
<input type="hidden" name="wr_id[<?php echo $i; ?>]" value="<?php echo $list[$i]['wr_id']; ?>">
|
||||
<?php } ?>
|
||||
</li>
|
||||
</div>
|
||||
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($i == 0)
|
||||
echo '<div class="no_data mt-50">게시물이 없어요.</div>';
|
||||
?>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<?php echo $write_pages ?>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<?php if ($is_admin) { ?>
|
||||
<script>
|
||||
$(function(){
|
||||
$('#all_chk').click(function(){
|
||||
$('[name="chk_bn_id[]"]').attr('checked', this.checked);
|
||||
});
|
||||
});
|
||||
|
||||
function fnew_submit(f)
|
||||
{
|
||||
f.pressed.value = document.pressed;
|
||||
|
||||
var cnt = 0;
|
||||
for (var i=0; i<f.length; i++) {
|
||||
if (f.elements[i].name == "chk_bn_id[]" && f.elements[i].checked)
|
||||
cnt++;
|
||||
}
|
||||
|
||||
if (!cnt) {
|
||||
alert(document.pressed+"할 게시물을 하나 이상 선택하세요.");
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!confirm("선택한 게시물을 정말 "+document.pressed+" 하시겠습니까?\n\n한번 삭제한 자료는 복구할 수 없습니다")) {
|
||||
return false;
|
||||
}
|
||||
|
||||
f.action = "<?php echo G5_BBS_URL ?>/new_delete.php";
|
||||
|
||||
return true;
|
||||
}
|
||||
</script>
|
||||
<?php } ?>
|
||||
<!-- } 전체게시물 목록 끝 -->
|
||||
169
theme/rb.basic/skin/new/rb.new/style.css
Normal file
169
theme/rb.basic/skin/new/rb.new/style.css
Normal file
@ -0,0 +1,169 @@
|
||||
@charset "utf-8";
|
||||
|
||||
/* 최근게시물 스킨 (new) */
|
||||
#new_sch {background:#f7f7f7;padding:30px;text-align:center;margin:0 0 10px}
|
||||
#new_sch legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
|
||||
#new_sch select {border:1px solid #d0d3db;width:175px;height:45px;padding:0 5px;border-radius:3px}
|
||||
#new_sch .frm_input {border:1px solid #d0d3db;width:300px;height:45px;border-radius:0;border-radius:3px}
|
||||
#new_sch .sch_wr {position:relative;display:inline-block}
|
||||
#new_sch .btn_submit {padding:0 10px;height:45px;width:88px;font-size:1.083em;font-weight:bold;color:#fff;background:#434a54}
|
||||
#new_sch p {padding:10px 0 0;font-size:0.95em;text-align:center;letter-spacing:-0.1em}
|
||||
|
||||
#fnewlist .profile_img img {border-radius:50%}
|
||||
#fnewlist .td_group a {background:#edfbde;color:#8cc152;padding:3px 4px;border-radius:5px;font-weight:normal}
|
||||
#fnewlist .td_board a {background:#eeeaf8;color:#ac92ec;padding:3px 4px;border-radius:5px;font-weight:normal}
|
||||
|
||||
.admin_new_btn {float:right;margin-bottom:10px}
|
||||
|
||||
.selec_chk {position:absolute;top:0;left:0;width:0;height:0;opacity:0;outline:0;z-index:-1;overflow:hidden}
|
||||
.chk_box input[type="checkbox"] + label {position:relative;padding-left:20px;color:#676e70}
|
||||
.chk_box input[type="checkbox"] + label:hover {color:#2172f8}
|
||||
.chk_box input[type="checkbox"] + label span {position:absolute;top:2px;left:0;width:15px;height:15px;display:block;margin:0;background:#fff;border:1px solid #d0d4df;border-radius:3px}
|
||||
.chk_box input[type="checkbox"]:checked + label {color:#000}
|
||||
.chk_box input[type="checkbox"]:checked + label span {background:url(../../../img/chk.png) no-repeat 50% 50% #3a8afd;border-color:#1471f6;border-radius:3px}
|
||||
|
||||
|
||||
#bo_cate {margin-bottom:28px}
|
||||
#bo_cate h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
|
||||
#bo_cate ul {zoom:1}
|
||||
#bo_cate ul:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#bo_cate li {display:inline-block;padding:2px}
|
||||
#bo_cate a {display:block;line-height:28px;padding:5px 15px;border-radius:30px;border:1px solid #d6e9ff;color:#6794d3}
|
||||
#bo_cate a:focus, #bo_cate a:hover, #bo_cate a:active {text-decoration:none;background:#3a8afd;color:#fff}
|
||||
#bo_cate .sch_on {z-index:2;background:#3a8afd;color:#fff;font-weight:bold;border:1px solid #3a8afd;
|
||||
-webkit-box-shadow:inset 0 2px 5px rgb(33, 135, 202);
|
||||
-moz-box-shadow:inset 0 2px 5px rgb(33, 135, 202);
|
||||
box-shadow:inset 0 2px 5px rgb(33, 135, 202)}
|
||||
|
||||
/* 전체검색결과 스킨 */
|
||||
#sch_res_detail {background:#f7f7f7;padding:30px;text-align:center;margin:0 0 10px}
|
||||
#sch_res_detail legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
|
||||
#sch_res_detail select {border:1px solid #d0d3db;width:175px;height:45px;padding:0 5px;border-radius:3px}
|
||||
#sch_res_detail .frm_input {border:1px solid #d0d3db;width:300px;height:45px;border-radius:0;border-radius:3px}
|
||||
#sch_res_detail .sch_wr {position:relative;display:inline-block}
|
||||
#sch_res_detail .btn_submit {padding:0 10px;height:45px;width:88px;font-size:1.083em;font-weight:bold;color:#fff;background:#434a54}
|
||||
|
||||
|
||||
#sch_res_ov {text-align:center;zoom:1;height:55px;line-height:55px;background:#edf3fc;border-radius:5px;border:1px solid #d6e2f4;margin-bottom:15px;padding:0 20px}
|
||||
#sch_res_ov:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#sch_res_ov h2 {float:left;display:inline-block;font-size:1.25em;color:#293d58;font-weight:normal}
|
||||
#sch_res_ov h2 strong {color:#ff005a}
|
||||
#sch_res_ov ul {display:inline-block;float:right;line-height:12px;font-size:0.92em;color:#5977a4;margin-top:20px}
|
||||
#sch_res_ov ul:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#sch_res_ov li {float:left;margin-right:5px;padding-right:5px;border-right:1px solid #5977a4}
|
||||
#sch_res_ov li:last-child {margin:0;padding:0;border:0}
|
||||
|
||||
#sch_res_board {margin-bottom:28px}
|
||||
#sch_res_board h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
|
||||
#sch_res_board ul {zoom:1}
|
||||
#sch_res_board ul:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#sch_res_board li {display:inline-block;padding:2px}
|
||||
#sch_res_board a {display:block;line-height:28px;padding:5px 15px;border-radius:30px;border:1px solid #d6e9ff;color:#6794d3}
|
||||
#sch_res_board a:focus, #sch_res_board a:hover {text-decoration:none;background:#3a8afd;color:#fff}
|
||||
#sch_res_board .cnt_cmt {font-weight:normal !important;display:inline-block;margin-left:3px;color:#3497d9;line-height:18px;font-size:0.92em}
|
||||
#sch_res_board a:hover .cnt_cmt {color:#fff}
|
||||
#sch_res_board .sch_on {z-index:2;background:#3a8afd;color:#fff;font-weight:bold;border:1px solid #3a8afd;
|
||||
-webkit-box-shadow: inset 0 2px 5px rgb(33, 135, 202);
|
||||
-moz-box-shadow: inset 0 2px 5px rgb(33, 135, 202);
|
||||
box-shadow:inset 0 2px 5px rgb(33, 135, 202)}
|
||||
|
||||
.sch_res_list {position:relative;margin-bottom:10px}
|
||||
.sch_res_list .search_board_result{position:relative}
|
||||
.sch_res_list h2 {margin:0 0 15px;font-size:1.2em}
|
||||
.sch_res_list ul {margin:0px 0 20px 0;padding:0;list-style:none;border-top:1px solid #ececec}
|
||||
.sch_res_list li {border-bottom:1px solid #ececec;background:#fff;position:relative}
|
||||
.sch_res_list .sch_tit {display:block;padding:20px 0 10px}
|
||||
.sch_res_list .pop_a {display:inline-block;background:#e8eeef;color:#6f777f;border-radius:50%;text-align:center;width:26px;height:26px;line-height:26px}
|
||||
.sch_res_title {display:inline-block;margin:0 0 5px;font-size:1.2em}
|
||||
.sch_res_list p {padding-bottom:10px;color:#666;line-height:1.5em}
|
||||
.sch_res_list .sch_info {padding:10px 0;color:#777}
|
||||
.sch_res_list .sch_info:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
.sch_res_list .profile_img img {border-radius:50%}
|
||||
.sch_res_list .sch_datetime {margin-left:5px}
|
||||
.sch_more {position:absolute;right:0;top:5px;text-align:right;font-weight:normal;color:#3a8afd}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**********************
|
||||
여기서부터 빌더전용 CSS입니다.
|
||||
스킨작업은 가급적 CSS를 수정하지마시고,
|
||||
주석 후 새로 라인을 추가해주세요.
|
||||
************************/
|
||||
|
||||
.rb_serch_skin {margin-top: 30px;}
|
||||
.rb_serch_skin h2 {font-size: 16px; text-align: left; font-weight: normal; margin-bottom: 30px;}
|
||||
.rb_serch_skin h2 a {color:#999;}
|
||||
.rb_serch_skin .rb_faq_sub_tit {font-size: 14px; text-align: center; margin-top: 20px; line-height: 130%;}
|
||||
.rb_serch_skin .faq_ser_wrap {width: 400px; margin: 0 auto; position: relative; margin-top: 50px;}
|
||||
.rb_serch_skin .faq_ser_wrap input {width: 100%; height:60px; border-radius: 60px; border:1px solid #AA20FF; color:#AA20FF; font-size: 16px; padding-left: 30px; padding-right: 60px; box-sizing: border-box;}
|
||||
.rb_serch_skin .faq_ser_wrap button {position: absolute; top:20px; right:30px;}
|
||||
|
||||
|
||||
|
||||
|
||||
.rb_serch_skin #bo_cate {margin-bottom: 0px; margin-top: 30px; display: flex;}
|
||||
.rb_serch_skin #bo_cate #sch_res_board {flex:1; position: relative;}
|
||||
.rb_serch_skin #bo_cate a {display: inline-flex; padding: 0px 20px; border:0px; font-size: 16px; color:#000; background-color: transparent; line-height: 56px; position: relative;}
|
||||
.rb_serch_skin #bo_cate a:first-child {padding-left: 0px;}
|
||||
.rb_serch_skin #bo_cate a:hover {background-color: transparent; font-family:'font-B',sans-serif;}
|
||||
.rb_serch_skin #bo_cate .sch_on {background-color: transparent; font-weight: normal; box-shadow: none; color:#AA20FF; border:0px; font-family:'font-B',sans-serif;}
|
||||
.rb_serch_skin #bo_cate li {padding: 0px; display: inline-block;}
|
||||
.rb_serch_skin #bo_cate #sch_res_board:before {content: "";bottom: 0;position: absolute;width: 100%;margin: 0;height: 1px;background-color: rgba(0, 0, 0, .1);}
|
||||
.rb_serch_skin #bo_cate .sch_on::after {content: "";position: absolute;bottom: 0;right: 20px;left: 0px;height: 2px;background-color: currentColor;}
|
||||
.rb_serch_skin .no_data {border-top:1px solid #ddd;}
|
||||
|
||||
|
||||
.rb_serch_skin #faq_con .con_inner .closer_btn {color:#AA20FF;}
|
||||
.rb_serch_skin #faq_wrap li h3.faq_li_open a {color:#000; font-family:'font-B',sans-serif;}
|
||||
.rb_serch_skin #faq_wrap li h3 {font-family:'font-R',sans-serif; font-size: 18px; font-weight: normal; min-height: 60px; padding-top: 20px; padding-bottom: 20px;}
|
||||
.rb_serch_skin #faq_wrap li h3 .tit_bg {font-family:'font-B',sans-serif; top:18px; font-size: 24px;}
|
||||
.rb_serch_skin #faq_wrap li h3 .tit_btn {top:20px;}
|
||||
.rb_serch_skin #faq_con .con_inner .closer_btn {top:20px;}
|
||||
.rb_serch_skin #faq_con .con_inner {padding-top: 0px;}
|
||||
.rb_serch_skin #faq_con .con_inner img {max-width:100%;}
|
||||
|
||||
.rb_serch_skin .btns_gr_wrap {position:fixed; top:128px; left: 0px; width: 100%; z-index: 0; height:0px;}
|
||||
.rb_serch_skin .btns_gr_wrap .sub {padding: 0px; height:0px; min-height: 0px;}
|
||||
.rb_serch_skin .btns_gr_wrap .btns_gr {float:right; width: 50px; margin-right: -100px;}
|
||||
.rb_serch_skin .btns_gr_wrap .btns_gr .fl_btns {width: 50px; height:50px; border:1px solid #ddd; background-color: #fff; border-radius: 6px; text-align: center; margin-bottom: 10px; position: relative; display: block; line-height: 45px;}
|
||||
.rb_serch_skin .btns_gr_wrap .btns_gr .fl_btns:hover {border-color:#AA20FF;}
|
||||
|
||||
.rb_serch_skin .rb_faq_sub_tit select {height: 35px;border-radius: 6px;padding-left: 15px;padding-right: 15px; width: 135px;}
|
||||
.rb_serch_skin #sch_res_board .cnt_cmt {color:#999 !important; display: none;}
|
||||
.rb_serch_skin #sch_res_board {margin-bottom: 0px;}
|
||||
.rb_serch_skin #sch_res_ov {border:0px; background-color:#f9f9f9; margin-bottom: 40px; height:inherit; padding: 30px; margin-top: 0px; border-radius: 0px; margin-top: 40px;}
|
||||
.rb_serch_skin .more_btn {margin-left: 0px; position: absolute; top:3px; right:0px;}
|
||||
.rb_serch_skin .sch_res_list .sch_datetime {font-size: 12px; margin-left: 0px;}
|
||||
.rb_serch_skin .sch_res_list li {padding-top: 10px; padding-bottom: 20px;}
|
||||
.rb_serch_skin #sch_res_ov h2 {color:#999; line-height: 100%; margin-bottom: 0px;}
|
||||
.rb_serch_skin #sch_res_ov h2 strong {color:#000;}
|
||||
.rb_serch_skin .sch_res_list {}
|
||||
.rb_serch_skin .pop_a_blank {color:#999; font-size: 12px; word-break: keep-all;}
|
||||
.rb_serch_skin .pop_a_blank:hover {color:#000;}
|
||||
.rb_serch_skin #sch_res_ov ul {margin-top: 3px;}
|
||||
.rb_serch_skin .sch_res_list .search_board_result {margin-bottom: 60px;}
|
||||
|
||||
.new_ul_wrap {position: relative;}
|
||||
.new_li_left {padding-right: 50px;}
|
||||
.new_li_right {position: absolute !important; top:22px; right:0px; border:0px !important; display: flex; gap:10px;}
|
||||
.new_li_right img {border-radius: 10px; object-fit: cover;width: 60px; height:60px; border:1px solid rgba(0,0,0,0.1);}
|
||||
.sch_res_title_co {font-size: 16px;}
|
||||
.sch_res_list .sch_tit_co {padding-bottom: 0px;}
|
||||
.sch_res_list .sch_info_co {padding-top: 0px;}
|
||||
|
||||
.rb_bbs_wrap #bo_cate {margin-bottom: 0px !important; margin-top: 30px; display: flex;}
|
||||
.rb_bbs_wrap #bo_cate #bo_cate_ul {flex:1; position: relative;}
|
||||
.rb_bbs_wrap #bo_cate a {display: inline-flex; padding: 0px 20px; border:0px; font-size: 16px; color:#000; background-color: transparent; line-height: 56px; position: relative;}
|
||||
.rb_bbs_wrap #bo_cate a:first-child {padding-left: 0px;}
|
||||
.rb_bbs_wrap #bo_cate a:hover {background-color: transparent; font-family:'font-B',sans-serif;}
|
||||
.rb_bbs_wrap #bo_cate #bo_cate_on {background-color: transparent; font-weight: normal; box-shadow: none; color:#AA20FF; border:0px; font-family:'font-B',sans-serif;}
|
||||
.rb_bbs_wrap #bo_cate li {padding: 0px; display: inline-block;}
|
||||
.rb_bbs_wrap #bo_cate #bo_cate_ul:before {content: "";bottom: 0;position: absolute;width: 100%;margin: 0;height: 1px;background-color: rgba(0, 0, 0, .1);}
|
||||
.rb_bbs_wrap #bo_cate #bo_cate_on::after {content: "";position: absolute;bottom: 0;right: 20px;left: 0px;height: 2px;background-color: currentColor;}
|
||||
|
||||
.sch_res_list ul {border-top:0px;}
|
||||
|
||||
/* } */
|
||||
|
||||
Reference in New Issue
Block a user