diff --git a/modules/board/skins/xe_list/css/white.css b/modules/board/skins/xe_list/css/white.css index 92c8eb840..fd8281213 100644 --- a/modules/board/skins/xe_list/css/white.css +++ b/modules/board/skins/xe_list/css/white.css @@ -46,6 +46,7 @@ Jeong, Chan Myeong 070601~070630 .boardList th.num { background-position:-3px bottom; border-left:1px solid #ffffff; padding:0;} .boardList th.category { padding:0 .2em 0 .5em;} .boardList th.category.thumbStyle { background-position:-3px bottom !important; border-left:1px solid #ffffff; text-align:left;} +.boardList th.category select { width:7em; } .boardList th.title {} .boardList th.author {} .boardList th.reading { white-space:nowrap;} @@ -126,6 +127,8 @@ Jeong, Chan Myeong 070601~070630 .buttonTypeB .icon { margin:0 .2em;} .buttonTypeB input { border:none; cursor:pointer; background:url(../images/white/buttonTypeBCenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px; _position:relative; _top:4px;} +.buttonTypeGo { border:none; cursor:pointer; width:24px; height:20px; background:url(../images/white/buttonTypeInput24.gif) no-repeat; font:.75em Tahoma; text-align:center;} + /* button of list page */ .buttonRight { position:relative; float:right; top:-3em; margin:0 0 -3em 0; _top:-3.5em; padding-right:.5em; overflow:visible;} .buttonRight ul { float:left; } diff --git a/modules/board/skins/xe_list/images/white/buttonTypeInput24.gif b/modules/board/skins/xe_list/images/white/buttonTypeInput24.gif new file mode 100644 index 000000000..0dcfc0e3d Binary files /dev/null and b/modules/board/skins/xe_list/images/white/buttonTypeInput24.gif differ diff --git a/modules/board/skins/xe_list/js/board.js b/modules/board/skins/xe_list/js/board.js index 7fd68bea6..2dc8accf5 100644 --- a/modules/board/skins/xe_list/js/board.js +++ b/modules/board/skins/xe_list/js/board.js @@ -122,10 +122,9 @@ function completeDeleteTrackback(ret_obj) { } /* 카테고리 이동 */ -function doChangeCategory(sel_obj, url) { - var category_srl = sel_obj.options[sel_obj.selectedIndex].value; - if(!category_srl) location.href=url; - else { - location.href = current_url.setQuery('category',category_srl); - } +function doChangeCategory() { + var sel_obj = xGetElementById("board_category"); + var sel_idx = sel_obj.selectedIndex; + var category_srl = sel_obj.options[sel_idx].value; + location.href = current_url.setQuery('category',category_srl); } diff --git a/modules/board/skins/xe_list/list.html b/modules/board/skins/xe_list/list.html index d97300b58..47594719a 100644 --- a/modules/board/skins/xe_list/list.html +++ b/modules/board/skins/xe_list/list.html @@ -18,12 +18,13 @@
- +