mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 21:55:31 +00:00
Porkjocky: .xul file troubleshooting. Removed duplicate references to css files within the same windows for performance. Wrapped another tree in a <div> to avoid scrolling issues. r=davidm
This commit is contained in:
parent
751c2c8fdd
commit
0cd13bcaa0
@ -18,7 +18,6 @@ Communications Corporation. Portions created by Netscape are
|
||||
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
||||
Rights Reserved.
|
||||
-->
|
||||
<?xml-stylesheet href="chrome://addressbook/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window SYSTEM "chrome://addressbook/locale/abCardViewOverlay.dtd">
|
||||
|
||||
|
@ -18,7 +18,6 @@ Communications Corporation. Portions created by Netscape are
|
||||
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
||||
Rights Reserved.
|
||||
-->
|
||||
<?xml-stylesheet href="chrome://addressbook/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window SYSTEM "chrome://addressbook/locale/abDirTreeOverlay.dtd">
|
||||
|
||||
|
@ -18,7 +18,6 @@ Communications Corporation. Portions created by Netscape are
|
||||
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
||||
Rights Reserved.
|
||||
-->
|
||||
<?xml-stylesheet href="chrome://addressbook/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window SYSTEM "chrome://addressbook/locale/abResultsTreeOverlay.dtd">
|
||||
|
||||
|
@ -18,8 +18,8 @@ Communications Corporation. Portions created by Netscape are
|
||||
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
||||
Rights Reserved.
|
||||
-->
|
||||
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
||||
<?xml-stylesheet href="chrome://addressbook/skin/" type="text/css"?>
|
||||
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
||||
<?xul-overlay href="chrome://addressbook/content/abDirTreeOverlay.xul"?>
|
||||
<?xul-overlay href="chrome://addressbook/content/abResultsTreeOverlay.xul"?>
|
||||
|
||||
@ -69,7 +69,7 @@ Rights Reserved.
|
||||
<box align="horizontal"
|
||||
style="width:200px; height:100%; background-color:white; border-right:solid black 1px">
|
||||
<!-- FIX ME - div is hack to make tree scroll properly -->
|
||||
<html:div style="width:100px;height:0px" flex="1">
|
||||
<html:div style="width:100px;height:100px" flex="1">
|
||||
<tree id="dirTree"/>
|
||||
</html:div>
|
||||
</box>
|
||||
@ -84,7 +84,7 @@ Rights Reserved.
|
||||
<box flex="100%" align="vertical"
|
||||
style="background-color:white; border-bottom:solid black 1px">
|
||||
<!-- FIX ME - div is hack to make tree scroll properly -->
|
||||
<html:div style="width:100px;height:0px" flex="1">
|
||||
<html:div style="width:100px;height:100px" flex="1">
|
||||
<tree id="resultsTree"/>
|
||||
</html:div>
|
||||
</box>
|
||||
@ -105,12 +105,12 @@ Rights Reserved.
|
||||
|
||||
<!-- Address bucket -->
|
||||
<box align="vertical" style="height:170px; background-color:white; border-top:solid black 1px">
|
||||
<tree id="addressBucket" flex="100%">
|
||||
<treecol style="width:100%"/>
|
||||
|
||||
<treechildren id="bucketBody">
|
||||
</treechildren>
|
||||
</tree>
|
||||
<html:div style="width:100px;height:100px" flex="1">
|
||||
<tree id="addressBucket" style="width:100%; height:100%">
|
||||
<treecol style="width:100%"/>
|
||||
<treechildren id="bucketBody"/>
|
||||
</tree>
|
||||
</html:div>
|
||||
</box>
|
||||
|
||||
</box>
|
||||
|
@ -215,7 +215,7 @@ Rights Reserved.
|
||||
<box align="horizontal"
|
||||
style="width:200px; height:100%; background-color:white; border-right:solid black 1px">
|
||||
<!-- FIX ME - div is hack to make tree scroll properly -->
|
||||
<html:div style="width:100px;height:0px" flex="1">
|
||||
<html:div style="width:100px;height:100px" flex="1">
|
||||
<tree id="dirTree"/>
|
||||
</html:div>
|
||||
</box>
|
||||
@ -227,7 +227,7 @@ Rights Reserved.
|
||||
<box flex="50%" align="vertical"
|
||||
style="background-color:white; border-bottom:solid black 1px">
|
||||
<!-- FIX ME - div is hack to make tree scroll properly -->
|
||||
<html:div style="width:100px;height:0px" flex="1">
|
||||
<html:div style="width:100px;height:100px" flex="1">
|
||||
<tree id="resultsTree"/>
|
||||
</html:div>
|
||||
</box>
|
||||
|
Loading…
Reference in New Issue
Block a user