mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1308 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
a174ef3759
commit
bbeceb193a
2 changed files with 8 additions and 23 deletions
|
|
@ -5,7 +5,8 @@
|
|||
margin-bottom:3px;
|
||||
}
|
||||
|
||||
#blog_category .node_item {
|
||||
#blog_category .node_item A {
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
#blog_category .selected {
|
||||
|
|
@ -28,26 +29,17 @@
|
|||
|
||||
#blog_category .page {
|
||||
cursor:pointer;
|
||||
width:18px;
|
||||
height:18px;
|
||||
background:url(../images/tree_menu/page.gif) no-repeat left;
|
||||
float:left;
|
||||
}
|
||||
|
||||
#blog_category .folder_open {
|
||||
cursor:pointer;
|
||||
width:18px;
|
||||
height:18px;
|
||||
background:url(../images/tree_menu/page_folder.gif) no-repeat left;
|
||||
float:left;
|
||||
}
|
||||
|
||||
#blog_category .folder_close {
|
||||
cursor:pointer;
|
||||
width:18px;
|
||||
height:18px;
|
||||
background:url(../images/tree_menu/folder.gif) no-repeat left;
|
||||
float:left;
|
||||
}
|
||||
|
||||
#blog_category .item_open {
|
||||
|
|
@ -63,50 +55,42 @@
|
|||
#blog_category .line_open {
|
||||
display:block;
|
||||
padding-left:18px;
|
||||
height:18px;
|
||||
background:url(../images/tree_menu/line.gif) repeat-y left;
|
||||
}
|
||||
|
||||
#blog_category .line_close {
|
||||
display:none;
|
||||
padding-left:18px;
|
||||
height:18px;
|
||||
background:url(../images/tree_menu/line.gif) repeat-y left;
|
||||
}
|
||||
|
||||
#blog_category .plus {
|
||||
padding-left:18px;
|
||||
height:18px;
|
||||
background:url(../images/tree_menu/plus.gif) repeat-y left;
|
||||
}
|
||||
|
||||
#blog_category .plus_bottom {
|
||||
padding-left:18px;
|
||||
height:18px;
|
||||
background:url(../images/tree_menu/plusbottom.gif) repeat-y left;
|
||||
background:url(../images/tree_menu/plusbottom.gif) no-repeat left;
|
||||
}
|
||||
|
||||
#blog_category .minus {
|
||||
padding-left:18px;
|
||||
height:18px;
|
||||
background:url(../images/tree_menu/minus.gif) repeat-y left;
|
||||
}
|
||||
|
||||
#blog_category .minus_bottom {
|
||||
padding-left:18px;
|
||||
height:18px;
|
||||
background:url(../images/tree_menu/minusbottom.gif) repeat-y left;
|
||||
background:url(../images/tree_menu/minusbottom.gif) no-repeat left;
|
||||
}
|
||||
|
||||
#blog_category .join {
|
||||
padding-left:18px;
|
||||
height:18px;
|
||||
background:url(../images/tree_menu/join.gif) repeat-y left;
|
||||
}
|
||||
|
||||
#blog_category .join_bottom {
|
||||
padding-left:18px;
|
||||
height:18px;
|
||||
background:url(../images/tree_menu/joinbottom.gif) repeat-y left;
|
||||
background:url(../images/tree_menu/joinbottom.gif) no-repeat left;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -199,10 +199,11 @@ function blogDrawNode(parent_node) {
|
|||
var text_class = "unselected";
|
||||
if(selected) text_class = "selected";
|
||||
|
||||
// 왼쪽 폴더/페이지와 텍스트 위치를 맞추기 위해;;; table태그 일단 사용. 차후 바꾸자..
|
||||
html += '<div id="'+zone_id+'" class="node_item">'+
|
||||
'<div id="'+zone_id+'_line" class="'+line_class+'">'+
|
||||
'<div id="'+zone_id+'_folder" '+click_str+'></div>'+
|
||||
'<span id="'+zone_id+'_node" class="'+text_class+'" onclick="blogSelectNode('+node_srl+')">'+text+'</span>'+
|
||||
'<table border="0" cellspacing="0" cellpadding="2"><tr><td><img src="./common/tpl/images/blank.gif" width="18" height="18" alt="" id="'+zone_id+'_folder" '+click_str+' /></td>'+
|
||||
'<td><a href="#" id="'+zone_id+'_node" class="'+text_class+'" onclick="blogSelectNode('+node_srl+');return false;">'+text+'</a></td></tr></table>'+
|
||||
'</div>';
|
||||
|
||||
if(hasChild && child_html) html += child_html;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue