mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-17 09:24:17 +09:00
1. 팝업창에서 팝업닫기 버튼(우상단)의 위치와 본문이 조금씩 숨는 문제 수정
2. 애드온 모듈 설정에서 모듈의 이름이 Array로 나오는 문제 수정. 3. xe default 게시판 스킨에서 비밀글 설정과 상관없이 사용할 수 있는 문제 수정 4. 기본 서식에서 글의 글자크기를 12px 로 고정 git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6143 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
41f566f434
commit
be407d41aa
6 changed files with 8 additions and 4 deletions
|
|
@ -504,6 +504,7 @@ function zbxe_folder_close(id) {
|
|||
**/
|
||||
var _popupHeight = 0;
|
||||
function setFixedPopupSize() {
|
||||
var headerObj = jQuery('#popHeader');
|
||||
var bodyObj = jQuery('#popBody');
|
||||
|
||||
if(bodyObj.length) {
|
||||
|
|
@ -512,6 +513,8 @@ function setFixedPopupSize() {
|
|||
}
|
||||
}
|
||||
|
||||
bodyObj.css({paddingRight:30});
|
||||
|
||||
var w = jQuery("#popup_content").width();
|
||||
w = w< 400 ? 400 : w;
|
||||
var h = jQuery("#popup_content").height();
|
||||
|
|
|
|||
|
|
@ -56,7 +56,6 @@
|
|||
$module_categories = $oModuleModel->getModuleCategories();
|
||||
|
||||
foreach($mid_list as $module_srl => $module) {
|
||||
$module->browser_title = $oModuleAdminModel->getLangCode($module->site_srl, $module->browser_title);
|
||||
$module_categories[$module->module_category_srl]->list[$module_srl] = $module;
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@
|
|||
.boxModelControler .buttonArea{ padding:15px 0 0 0; text-align:center;}
|
||||
|
||||
#popup_content { border:2px solid #777; margin:0; font-size:12px; background:#fff; position:relative;}
|
||||
#popup_content .xButton { position:absolute; top:9px; right:9px; width:15px; height:14px; background-color:transparent; background:url(../img/buttonClose.gif) no-repeat; border:0; cursor:pointer; overflow:hidden; }
|
||||
#popup_content .xButton { position:absolute; top:9px; right:18px; width:15px; height:14px; background-color:transparent; background:url(../img/buttonClose.gif) no-repeat; border:0; cursor:pointer; overflow:hidden; }
|
||||
#popup_content .xButton span { position:relative; z-index:-1; visibility:hidden; }
|
||||
#popup_content * { font-size:12px; }
|
||||
#popHeadder h4.xeAdmin, #popHeadder h1.xeAdmin, #popHeadder h3.xeAdmin { font-size:14px !important; font-family:Dotum !important; background:#f4f4f4 !important; padding:8px 30px 8px 15px !important; letter-spacing:-1px !important; border:none !important; margin:0 !important;}
|
||||
|
|
|
|||
|
|
@ -68,10 +68,12 @@
|
|||
<label for="lock_comment">{$lang->lock_comment}</label>
|
||||
</dd>
|
||||
<!--@endif-->
|
||||
<!--@if($module_info->secret=="Y")-->
|
||||
<dd>
|
||||
<input type="checkbox" name="is_secret" value="Y" <!--@if($oDocument->isSecret())-->checked="checked"<!--@end--> id="is_secret" />
|
||||
<label for="is_secret">{$lang->secret}</label>
|
||||
</dd>
|
||||
<!--@end-->
|
||||
<dd>
|
||||
<input type="checkbox" name="allow_comment" value="Y" <!--@if($oDocument->allowComment())-->checked="checked"<!--@end--> id="allow_comment" />
|
||||
<label for="allow_comment">{$lang->allow_comment}</label>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
@charset "utf-8";
|
||||
/* NHN > UIT Center > Open UI Technology Team > Jeong Chan Myeong(dece24@nhncorp.com) */
|
||||
/* xe_content */
|
||||
.xe_content{ color:#000;}
|
||||
.xe_content{ color:#000; font-size:12px;}
|
||||
|
||||
.xe_content blockquote.q1,
|
||||
.xe_content blockquote.q2,
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/* xe_content */
|
||||
.xe_content{ color:#fff;}
|
||||
.xe_content{ color:#fff; font-size:12px;}
|
||||
|
||||
.xe_content blockquote.q1,
|
||||
.xe_content blockquote.q2,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue