mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
issue 1311 fix. Progress in 50%.
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10246 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
cd90597c60
commit
5d152237de
4 changed files with 13 additions and 5 deletions
|
|
@ -338,7 +338,9 @@ body.modalContainer{_height:100%;_width:100%} /* IE6 only */
|
|||
.x .search form{float:right;margin:1em 0}
|
||||
.x .search form *{vertical-align:middle}
|
||||
/* Site Map */
|
||||
.x .siteMap h2 input{font-size:14px;font-weight:bold;padding:0 .5em}
|
||||
.x .siteMap h2 input{font-size:14px;font-weight:bold;padding:3px 4px;margin:0;border:0;background:transparent}
|
||||
.x .siteMap h2:hover input,
|
||||
.x .siteMap h2 input:focus{background:#ff0;border:1px dashed #ccc;margin:-1px}
|
||||
.x .siteMap label{cursor:text}
|
||||
.x .siteMap .lined ul{padding:0;margin:0;border-top:1px solid #eee;zoom:1}
|
||||
.x .siteMap .lined li{position:relative;padding:0;margin:0;cursor:all-scroll;list-style:none;zoom:1}
|
||||
|
|
|
|||
2
modules/admin/tpl/css/admin.min.css
vendored
2
modules/admin/tpl/css/admin.min.css
vendored
File diff suppressed because one or more lines are too long
|
|
@ -217,7 +217,12 @@ $('form.siteMap')
|
|||
|
||||
selectModuleLayer.find('select').html(htmlBuffer);
|
||||
}
|
||||
|
||||
|
||||
function tgMapBtn(){
|
||||
$('.x .siteMap>ul:visible').next('.btnArea').slideDown(50);
|
||||
$('.x .siteMap>ul:hidden').next('.btnArea').slideUp(50);
|
||||
}
|
||||
tgMapBtn();
|
||||
$('a.tgMap').click(function() {
|
||||
var $this = $(this);
|
||||
var curToggleStatus = getCookie('sitemap_toggle_'+$this.attr('href'));
|
||||
|
|
@ -226,7 +231,8 @@ $('form.siteMap')
|
|||
$($this.attr('href')).slideToggle('fast');
|
||||
$this.closest('.siteMap').toggleClass('fold');
|
||||
setCookie('sitemap_toggle_'+$this.attr('href'), toggleStatus);
|
||||
|
||||
setTimeout(function(){ tgMapBtn(); }, 250);
|
||||
|
||||
return false;
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ xe.lang.confirm_delete = "{$lang->confirm_delete}";
|
|||
|
||||
<block loop="$menu_list=>$key,$value">
|
||||
{@$menuSrl = $value->menuSrl}
|
||||
<form class="portlet siteMap" id="menu_{$menuSrl}" method="post">
|
||||
<form class="portlet siteMap" id="menu_{$menuSrl}" method="post" action="#menu_{$menuSrl}">
|
||||
<input type="hidden" name="module" value="{$module}" />
|
||||
<input type="hidden" name="act" value="procMenuAdminArrangeItem" />
|
||||
<input type="hidden" name="menu_srl" value="{$menuSrl}" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue