For some reason, since few hours ago, apprunner refuse to load msgcompose.xul because the heigth of the fields isn't set correctly!!! I have changed the way we declare the input fields, I've just copied how they do in navigator.xul with the url field.

This commit is contained in:
ducarroz%netscape.com 1999-04-28 04:24:10 +00:00
Родитель 5808d55c70
Коммит c778414dd1
1 изменённых файлов: 25 добавлений и 5 удалений

Просмотреть файл

@ -162,27 +162,47 @@
<toolbar>
<html:p>&toAddr.label;</html:p>
<html:input id="msgTo" style="vertical-align:center; width:200px;" type="text" />
<box align="vertical" flex="100%">
<spring flex="100%"/>
<html:input id="msgTo" type="text" style="min-width: 200px; min-height: 27px"/>
<spring flex="100%"/>
</box>
</toolbar>
<toolbar>
<html:p>&ccAddr.label;</html:p>
<html:input id="msgCc" style="vertical-align:center; width:200px;" type="text" />
<box align="vertical" flex="100%">
<spring flex="100%"/>
<html:input id="msgCc" type="text" style="min-width: 200px; min-height: 27px"/>
<spring flex="100%"/>
</box>
</toolbar>
<toolbar>
<html:p>&bccAddr.label;</html:p>
<html:input id="msgBcc" style="vertical-align:center; width:200px;" type="text" />
<box align="vertical" flex="100%">
<spring flex="100%"/>
<html:input id="msgBcc" type="text" style="min-width: 200px; min-height: 27px"/>
<spring flex="100%"/>
</box>
</toolbar>
<toolbar>
<html:p>&newsgroupsAddr.label;</html:p>
<html:input id="msgNewsgroup" style="vertical-align:center; width:200px;" type="text" />
<box align="vertical" flex="100%">
<spring flex="100%"/>
<html:input id="msgNewsgroup" type="text" style="min-width: 200px; min-height: 27px"/>
<spring flex="100%"/>
</box>
</toolbar>
<toolbar>
<html:p>&subject.label;</html:p>
<html:input id="msgSubject" style="vertical-align:center; width:500px;" type="text" />
<box align="vertical" flex="100%">
<spring flex="100%"/>
<html:input id="msgSubject" type="text" style="min-width: 200px; min-height: 27px"/>
<spring flex="100%"/>
</box>
</toolbar>
</toolbox>