mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-23 13:19:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@519 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
5515c7e7c6
commit
f564dfb046
7 changed files with 85 additions and 15 deletions
|
|
@ -13,6 +13,10 @@
|
|||
visibility:hidden;
|
||||
}
|
||||
|
||||
FORM {
|
||||
display:inline;
|
||||
}
|
||||
|
||||
A.bold {
|
||||
font-weight:bold;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 가 아니면 새창으로 띄움)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
body {
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
border-width:0px;
|
||||
border-style:none;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue