git-svn-id: http://xe-core.googlecode.com/svn/trunk@519 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-19 02:24:22 +00:00
parent 5515c7e7c6
commit f564dfb046
7 changed files with 85 additions and 15 deletions

View file

@ -13,6 +13,10 @@
visibility:hidden;
}
FORM {
display:inline;
}
A.bold {
font-weight:bold;
}

View file

@ -128,9 +128,18 @@ function svc_folder_close(id) {
function setFixedPopupSize() {
var w = xWidth("popup_content");
var h = xHeight("popup_content");
// 윈도우에서는 브라우저 상관없이 가로 픽셀이 조금 더 늘어나야 한다.
if(xUA.indexOf('windows')>0) {
if(xOp7Up) w += 9;
else if(xIE4Up) w += 8;
else w += 5;
}
window.resizeTo(w,h);
var w1 = xWidth(window.document.body);
var h1 = xHeight(window.document.body);
window.resizeBy(w-w1,h-h1);
window.resizeBy(0,h-h1);
}
// url이동 (open_window 값이 N 가 아니면 새창으로 띄움)

View file

@ -1,4 +1,6 @@
body {
margin:0px;
padding:0px;
border-width:0px;
border-style:none;
}

View file

@ -1,9 +1,7 @@
<!--%import("css/popup.css")-->
<!--#include("./common/tpl/common_header.html")-->
<div id="popup_content">
{$content}
</div>
<div id="popup_content" style="float:left;">{$content}</div>
<script type="text/javascript">
xAddEventListener(window, 'load', setFixedPopupSize);