Fix for bug #21995 r=sgehani
This commit is contained in:
Родитель
d2cd1cdb3b
Коммит
b2a0df72c1
|
@ -33,8 +33,6 @@ Contributor(s):
|
|||
title="&items.label;"
|
||||
class = "dialog"
|
||||
align = "vertical"
|
||||
height = "250"
|
||||
width = "400"
|
||||
>
|
||||
|
||||
<html:script language="javascript" src="institems.js"/>
|
||||
|
|
|
@ -47,7 +47,7 @@ function onLoad()
|
|||
for (i = 0; i < numberOfDialogTreeElements; i++)
|
||||
{
|
||||
moduleName = param.GetString(i);
|
||||
URL = param.GetString(i++);
|
||||
URL = param.GetString(++i);
|
||||
addTreeItem(row++, moduleName, URL);
|
||||
}
|
||||
manager.DialogOpened(window);
|
||||
|
|
|
@ -34,8 +34,6 @@
|
|||
title="&progress.label;"
|
||||
align = "vertical"
|
||||
class = "dialog"
|
||||
width="350"
|
||||
height="300"
|
||||
>
|
||||
|
||||
<html:script language="javascript" src="xpistatus.js"/>
|
||||
|
@ -44,14 +42,14 @@
|
|||
<box align="horizontal" id="interiorTitleBox">
|
||||
<html:div id="interiorTitle"> &progress.label; </html:div>
|
||||
<spring flex="100%"/>
|
||||
<titlebutton class="graphic"/>
|
||||
<titledbutton class="graphic" />
|
||||
</box>
|
||||
|
||||
<html:div>
|
||||
<html:hr/>
|
||||
</html:div>
|
||||
|
||||
<spring id="verticalSmallSpace"/>
|
||||
<spring id="verticalSmallSpacer"/>
|
||||
|
||||
<box align="vertical" id="treeBox">
|
||||
<html:div id="table-housing">
|
||||
|
@ -72,15 +70,16 @@
|
|||
</html:div>
|
||||
</box>
|
||||
|
||||
<spring id="verticalLargeSpace"/>
|
||||
<spring id="verticalLargeSpacer"/>
|
||||
|
||||
<html:input id="dialog.uiPackageName" readonly="" style="width:100%" />
|
||||
<html:input id="dialog.currentAction" readonly="" style="width:100%" />
|
||||
|
||||
<spring style="height:1em"/>
|
||||
<box align="vertical" id="statusMessages">
|
||||
<html:input id="dialog.uiPackageName" readonly="" />
|
||||
<html:input id="dialog.currentAction" readonly="" />
|
||||
</box>
|
||||
|
||||
<spring style="height:1ex"/>
|
||||
|
||||
<box align="horizontal">
|
||||
<spring style="width:2px"/>
|
||||
|
||||
<box align="vertical">
|
||||
<spring style="height:6px"/>
|
||||
|
@ -88,11 +87,9 @@
|
|||
</progressmeter>
|
||||
</box>
|
||||
|
||||
<spring flex="80%"/>
|
||||
<spring flex="80%"/>
|
||||
|
||||
<!--box align="horizontal"-->
|
||||
<titledbutton class="dialog push" id="dialog.cancel" disabled="false" onclick="cancel()" value="&dialogCancel.label;"/>
|
||||
<!--/box-->
|
||||
<titledbutton class="dialog push" id="dialog.cancel" disabled="false" onclick="cancel()" value="&dialogCancel.label;"/>
|
||||
</box>
|
||||
</box>
|
||||
|
||||
|
|
|
@ -46,15 +46,19 @@ box#treeBox{
|
|||
height : 18ex;
|
||||
}
|
||||
|
||||
box#statusMessages{
|
||||
width : 36em;
|
||||
}
|
||||
|
||||
div#interiorTitle {
|
||||
font-size : 24px;
|
||||
font-weight : bold;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
#table-housing {
|
||||
height: : 100%;
|
||||
height : 100%;
|
||||
}
|
||||
*/
|
||||
|
||||
|
@ -93,7 +97,7 @@ spring#verticalSmallSpacer {
|
|||
}
|
||||
|
||||
spring#verticalLargeSpacer {
|
||||
height : 20px;
|
||||
height : 6ex;
|
||||
}
|
||||
|
||||
spring#verticalMediumSpacer {
|
||||
|
|
Загрузка…
Ссылка в новой задаче