mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-19 19:29:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1731 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
749b143bcc
commit
4f38a83865
4 changed files with 10 additions and 7 deletions
|
|
@ -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; }
|
||||
|
|
|
|||
BIN
modules/board/skins/xe_list/images/white/buttonTypeInput24.gif
Normal file
BIN
modules/board/skins/xe_list/images/white/buttonTypeInput24.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 419 B |
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,12 +18,13 @@
|
|||
<!-- 카테고리 사용시 카테고리 선택 표시 -->
|
||||
<th scope="col" class="category">
|
||||
<form action="./" method="get">
|
||||
<select name="category" onchange="doChangeCategory(this, '{getUrl('category','')}')" >
|
||||
<select name="category" id="board_category">
|
||||
<option value="" selected="selected">{$lang->category}</option>
|
||||
<!--@foreach($category_list as $val)-->
|
||||
<option value="{$val->category_srl}" <!--@if($category==$val->category_srl)-->selected="true"<!--@end-->>{$val->title} <!--@if($val->document_count)-->({$val->document_count})<!--@end--></option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<input type="button" name="go_button" value="GO" onclick="doChangeCategory(); return false;" class="buttonTypeGo" />
|
||||
</form>
|
||||
</th>
|
||||
<!--@end-->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue