Merge branch 'master' of github.com:gnuboard/g4s
This commit is contained in:
@ -136,7 +136,6 @@ table a {color:#000;text-decoration:none}
|
||||
.td_mb_id {width:100px;text-align:center}
|
||||
.td_nick {width:100px;text-align:center}
|
||||
.td_name {width:100px;text-align:left}
|
||||
.td_name div {position:relative}
|
||||
.td_date {width:60px;text-align:center}
|
||||
.td_datetime {width:110px;text-align:center}
|
||||
.td_mng {width:80px;text-align:center}
|
||||
@ -393,7 +392,6 @@ fieldset button {padding:0 15px;height:24px;border:0;background:#494949;color:#f
|
||||
.btn_bo_user {float:right;margin:0;padding:0;list-style:none}
|
||||
.btn_bo_user li {float:left;margin-left:5px}
|
||||
#bo_list caption {padding:0;height:0;color:transparent;overflow:hidden} /* ff에서 감추기 위해 color:transparent 사용 */
|
||||
#bo_list strong {color:#109ff1}
|
||||
.btn_bo_adm {float:left}
|
||||
.btn_bo_adm li {float:left;margin-right:5px}
|
||||
.bo_notice {}
|
||||
@ -481,9 +479,12 @@ fieldset button {padding:0 15px;height:24px;border:0;background:#494949;color:#f
|
||||
#bo_vc_warea .bo_vc_submit {position:absolute;top:0;right:-90px !important;right:20px;width:75px;height:57px;border:1px solid #666;background:#494949;color:#fff;letter-spacing:-0.1em}
|
||||
|
||||
/* 사이드뷰 */
|
||||
#sideview {z-index:1000;position:absolute;top:15px;left:20px;margin:0 !important;padding:0 !important;border:1px solid #999;background:#f9f9f9}
|
||||
#sideview ul {margin:0 !important;padding:0 !important;list-style:none !important}
|
||||
#sideview a {display:inline-block;padding:5px 10px 4px;width:100px;border-bottom:1px solid #ddd;color:#000;font-weight:normal;text-decoration:none}
|
||||
.sv {display:inline-block;position:relative;font-weight:normal}
|
||||
.sv .sv_wrap {display:block;margin-top:5px;border:1px solid #eee;background:#f7f7f2}
|
||||
.sv .sv_wrap a {display:block;padding:3px;border-bottom:1px solid #eee}
|
||||
.sv_on {z-index:1000;position:absolute;top:10px;left:20px;width:100px !important;height:auto !important;background:#ddd;overflow:auto}
|
||||
.sv_off {display:block;position:absolute;margin:0 !important;width:0;height:0;border:0 !important;overflow:hidden}
|
||||
.sv_off a {margin:0;padding:0;width:0;height:0;overflow:hidden}
|
||||
|
||||
/* pagination */
|
||||
.pg {clear:both;margin:0 0 20px;padding-top:20px;text-align:center}
|
||||
|
||||
@ -378,7 +378,7 @@ function get_list($write_row, $board, $skin_path, $subject_len=40)
|
||||
if ($board['bo_use_sideview'])
|
||||
$list['name'] = get_sideview($list['mb_id'], $tmp_name, $list['wr_email'], $list['wr_homepage']);
|
||||
else
|
||||
$list['name'] = '<span class="'.($list['mb_id']?'member':'guest').'">'.$tmp_name.'</span>';
|
||||
$list['name'] = '<span class="'.($list['mb_id']?'sv_member':'sv_guest').'">'.$tmp_name.'</span>';
|
||||
|
||||
$reply = $list['wr_reply'];
|
||||
|
||||
@ -985,7 +985,7 @@ function get_sideview($mb_id, $name='', $email='', $homepage='')
|
||||
$email = get_text($email);
|
||||
$homepage = get_text($homepage);
|
||||
|
||||
$str = "<a href=\"\" class=\"sv\">\n";
|
||||
$str = "<strong class=\"sv\">\n";
|
||||
$str .= $tmp_name."\n";
|
||||
$str .= "<span class=\"sv_wrap\">\n";
|
||||
if($mb_id)
|
||||
@ -1009,7 +1009,7 @@ function get_sideview($mb_id, $name='', $email='', $homepage='')
|
||||
$str .= "<a href=\"".G4_ADMIN_URL."/point_list.php?sfl=mb_id&stx=".$mb_id."\" target=\"_blank\">포인트내역</a>\n";
|
||||
}
|
||||
$str .= "</span>\n";
|
||||
$str .= "</a>";
|
||||
$str .= "</strong>";
|
||||
|
||||
return $str;
|
||||
}
|
||||
|
||||
@ -118,7 +118,7 @@ if ($is_nogood) $colspan++;
|
||||
if (isset($list[$i]['icon_secret'])) echo $list[$i]['icon_secret'];
|
||||
?>
|
||||
</td>
|
||||
<td class="td_name"><div><?=$list[$i]['name']?></div></td>
|
||||
<td class="td_name"><?=$list[$i]['name']?></td>
|
||||
<td class="td_date"><?=$list[$i]['datetime2']?></td>
|
||||
<td class="td_num"><?=$list[$i]['wr_hit']?></td>
|
||||
<? if ($is_good) { ?><td class="td_num"><?=$list[$i]['wr_good']?></td><? } ?>
|
||||
|
||||
Reference in New Issue
Block a user