|
- >사용 (글쓴이 클릭시 나오는 레이어 메뉴)
+ >
+ 사용 (글쓴이 클릭시 나오는 레이어 메뉴)
|
diff --git a/css/default.css b/css/default.css
index 1a6343fee..aeded1e5e 100644
--- a/css/default.css
+++ b/css/default.css
@@ -254,8 +254,8 @@ fieldset .frm_input {padding:2px 2px 3px;border:1px solid #b8c9c2;background:#f7
/* 사이드뷰 */
.sv_wrap {display:inline-block;position:relative;font-weight:normal}
-.sv_wrap .sv {z-index:1000;display:none;margin:5px 0 0;border:1px solid #283646;background:#111}
-.sv_wrap .sv a {display:inline-block;margin:0;padding:3px;width:94px;border-bottom:1px solid #283646;color:#fff}
+.sv_wrap .sv {z-index:1000;display:none;margin:5px 0 0;border:1px solid #283646}
+.sv_wrap .sv a {display:inline-block;margin:0;padding:3px;width:94px;border-bottom:1px solid #283646;background:#111;color:#fff !important}
.sv_wrap a:focus, .sv_wrap a:hover, .sv_wrap a:active {text-decoration:none}
.sv_on {display:block !important;position:absolute;top:10px;left:20px;width:auto;height:auto}
.sv_nojs .sv {display:block}
diff --git a/mobile/skin/qa/basic/list.skin.php b/mobile/skin/qa/basic/list.skin.php
index 27a752ce5..f5fad07ca 100644
--- a/mobile/skin/qa/basic/list.skin.php
+++ b/mobile/skin/qa/basic/list.skin.php
@@ -1,10 +1,5 @@
@@ -42,55 +37,45 @@ if ($is_checkbox) $colspan++;
-
-
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 게시물이 없습니다.'; } ?>
+
diff --git a/mobile/skin/qa/basic/style.css b/mobile/skin/qa/basic/style.css
index ee6a7fbb5..28bdeaac5 100644
--- a/mobile/skin/qa/basic/style.css
+++ b/mobile/skin/qa/basic/style.css
@@ -26,20 +26,6 @@
#bo_w .btn_cancel {}
#bo_w .btn_frmline {} /* 우편번호검색버튼 등 */
-/* 기본테이블 */
-/* 목록 테이블 */
-#bo_list .tbl_head01 {}
-#bo_list .tbl_head01 caption {}
-#bo_list .tbl_head01 thead th {}
-#bo_list .tbl_head01 thead a {}
-#bo_list .tbl_head01 thead th input {} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
-#bo_list .tbl_head01 tfoot th {}
-#bo_list .tbl_head01 tfoot td {}
-#bo_list .tbl_head01 tbody th {}
-#bo_list .tbl_head01 td {}
-#bo_list .tbl_head01 a {}
-#bo_list td.empty_table {}
-
/* 읽기 내 테이블 */
#bo_v .tbl_head01 {}
#bo_v .tbl_head01 caption {}
@@ -77,17 +63,14 @@
/* ### 기본 스타일 커스터마이징 끝 ### */
/* 게시판 목록 */
-#bo_list .td_chk {width:30px;text-align:center}
-#bo_list .td_group {width:100px;text-align:center}
-#bo_list .td_board {width:120px;text-align:center}
-#bo_list .td_num {width:50px;text-align:center}
-#bo_list .td_numbig {width:80px;text-align:center}
-#bo_list .td_mb_id {width:100px;text-align:center}
-#bo_list .td_nick {width:100px;text-align:center}
-#bo_list .td_name {width:100px;text-align:left}
-#bo_list .td_date {width:60px;text-align:center}
-#bo_list .td_datetime {width:150px;text-align:center}
-#bo_list .td_mng {width:80px;text-align:center}
+#bo_list #list_chk {padding:0 10px 10px}
+#bo_list .ul_wrap ul {margin:0;padding:0;border-top:1px solid #e9e9e9;list-style:none}
+#bo_list .ul_wrap li {position:relative;padding:8px 10px;border-bottom:1px solid #e9e9e9}
+#bo_list .ul_wrap li.bo_adm {padding:8px 10px 8px 30px}
+#bo_list .ul_wrap a {display:block;padding:0 0 10px}
+#bo_list .ul_wrap .li_chk {position:absolute;top:8px;left:10px}
+#bo_list .ul_wrap .li_info span {display:inline-block;margin:0 5px 0 0;vertical-align:middle}
+#bo_list .ul_wrap .li_stat {position:absolute;bottom:8px;right:10px}
#bo_cate h2 {width:0;height:0;font-size:0;line-height:0;overflow:hidden}
#bo_cate ul {margin:5px 10px;padding-left:1px;zoom:1}
diff --git a/plugin/PHPMailer_v2.0.4/class.phpmailer.php b/plugin/PHPMailer_v2.0.4/class.phpmailer.php
index a943219c1..9214dbc9b 100644
--- a/plugin/PHPMailer_v2.0.4/class.phpmailer.php
+++ b/plugin/PHPMailer_v2.0.4/class.phpmailer.php
@@ -591,7 +591,7 @@ class PHPMailer {
/* Retry while there is no connection */
while($index < count($hosts) && $connection == false) {
$hostinfo = array();
- if(eregi('^(.+):([0-9]+)$', $hosts[$index], $hostinfo)) {
+ if(preg_match('/^(.+):([0-9]+)$/i', $hosts[$index], $hostinfo)) {
$host = $hostinfo[1];
$port = $hostinfo[2];
} else {
|