mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-11 04:52:14 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1160 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
7885449381
commit
cc54e8ba8b
4 changed files with 44 additions and 44 deletions
|
|
@ -13,7 +13,7 @@ body {
|
||||||
* 상단 로고 및 메인 1차 메뉴
|
* 상단 로고 및 메인 1차 메뉴
|
||||||
**/
|
**/
|
||||||
.layout_top {
|
.layout_top {
|
||||||
margin:10px;
|
margin:10px 10px 0px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 상단 로고 부분 */
|
/* 상단 로고 부분 */
|
||||||
|
|
@ -32,21 +32,16 @@ body {
|
||||||
padding:3px 0px 3px 0px;
|
padding:3px 0px 3px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 중간 영역 (왼쪽 메뉴 + 컨텐츠)
|
|
||||||
**/
|
|
||||||
.layout_middle {
|
|
||||||
margin:10px;
|
|
||||||
clear:both;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 좌측 메뉴 및 메인 2차 메뉴, 로그인 플러그인 및 기타
|
* 좌측 메뉴 및 메인 2차 메뉴, 로그인 플러그인 및 기타
|
||||||
**/
|
**/
|
||||||
.layout_left {
|
.layout_left {
|
||||||
width:220px;
|
width:220px;
|
||||||
margin-right:10px;
|
|
||||||
float:left;
|
float:left;
|
||||||
|
margin-top:10px;
|
||||||
|
position:absolute;
|
||||||
|
left:10px;
|
||||||
|
z-index:10;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 좌측 2차 메뉴 */
|
/* 좌측 2차 메뉴 */
|
||||||
|
|
@ -70,8 +65,11 @@ body {
|
||||||
.layout_content {
|
.layout_content {
|
||||||
position:absolute;
|
position:absolute;
|
||||||
left:0px;
|
left:0px;
|
||||||
padding:0px 0px 0px 240px;
|
padding:10px 10px 0px 240px;
|
||||||
margin-right:10px;
|
z-index:1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -79,6 +77,7 @@ body {
|
||||||
**/
|
**/
|
||||||
.layout_bottom {
|
.layout_bottom {
|
||||||
clear:both;
|
clear:both;
|
||||||
|
margin-top:20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 하단 메뉴 */
|
/* 하단 메뉴 */
|
||||||
|
|
@ -190,3 +189,4 @@ body {
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
text-decoration:none;
|
text-decoration:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -41,6 +41,8 @@ function xe_print_menu(menu_name, depth, print_child) {
|
||||||
var menu_obj = menu_list[menu_key];
|
var menu_obj = menu_list[menu_key];
|
||||||
if(typeof(menu_obj)=='undefined'||!menu_obj) continue;
|
if(typeof(menu_obj)=='undefined'||!menu_obj) continue;
|
||||||
|
|
||||||
|
if(!menu_obj.text && !menu_obj.normal_btn) continue;
|
||||||
|
|
||||||
var className = menu_obj.className;
|
var className = menu_obj.className;
|
||||||
if(menu_obj.selected) className = menu_obj.selectedClassName;
|
if(menu_obj.selected) className = menu_obj.selectedClassName;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -46,9 +46,6 @@ xe_layout_menu['bottom_menu'][1][{$first_key}] = { "text":"{htmlspecialchars($fi
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 중간 영역 -->
|
|
||||||
<div class="layout_middle">
|
|
||||||
|
|
||||||
<!-- 왼쪽 2차 메뉴 및 로그인과 기타 플러그인 부분 -->
|
<!-- 왼쪽 2차 메뉴 및 로그인과 기타 플러그인 부분 -->
|
||||||
<div class="layout_left">
|
<div class="layout_left">
|
||||||
<!-- 로그인 플러그인 -->
|
<!-- 로그인 플러그인 -->
|
||||||
|
|
@ -70,8 +67,8 @@ xe_layout_menu['bottom_menu'][1][{$first_key}] = { "text":"{htmlspecialchars($fi
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 컨텐츠 출력 부분 -->
|
<!-- 컨텐츠 출력 부분 -->
|
||||||
<div class="layout_content" id="content">{$content}</div>
|
<div class="layout_content">
|
||||||
</div>
|
<div id="content">{$content}</div>
|
||||||
|
|
||||||
<!-- bottom_menu 메뉴 시작 -->
|
<!-- bottom_menu 메뉴 시작 -->
|
||||||
<div class="layout_bottom">
|
<div class="layout_bottom">
|
||||||
|
|
@ -81,3 +78,5 @@ xe_layout_menu['bottom_menu'][1][{$first_key}] = { "text":"{htmlspecialchars($fi
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -94,7 +94,6 @@
|
||||||
<!--@if($allow_fileupload)-->
|
<!--@if($allow_fileupload)-->
|
||||||
<!-- 첨부파일 영역 -->
|
<!-- 첨부파일 영역 -->
|
||||||
<!--%import("./js/uploader.js")-->
|
<!--%import("./js/uploader.js")-->
|
||||||
<!--%import("./js/SWFUpload.js")-->
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var zbxe_session_name = "{session_name()}";
|
var zbxe_session_name = "{session_name()}";
|
||||||
var uploader_setting = { "allowed_filesize" : {$file_config->allowed_filesize}, "allowed_filetypes" : "{$file_config->allowed_filetypes}", "allowed_filetypes_description" : "{$file_config->allowed_filetypes}" }
|
var uploader_setting = { "allowed_filesize" : {$file_config->allowed_filesize}, "allowed_filetypes" : "{$file_config->allowed_filetypes}", "allowed_filetypes_description" : "{$file_config->allowed_filetypes}" }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue