Smaller CSS/JS/XBL patch, should allow XUL changes to go in easier by andersma@luther.edu r=timeless sr=blake git-svn-id: svn://10.0.0.236/trunk@98768 18797224-902f-48f8-a5cc-f745e15eee43
30 lines
688 B
XML
30 lines
688 B
XML
<?xml version="1.0"?>
|
|
|
|
<bindings id="fieldsetBindings"
|
|
xmlns="http://www.mozilla.org/xbl"
|
|
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<binding id="fieldset" extends="xul:groupbox">
|
|
<content>
|
|
<xul:vbox class="fieldset-title" autostretch="never">
|
|
<children includes="legend"/>
|
|
</xul:vbox>
|
|
<xul:box flex="1" class="fieldset-body">
|
|
<xul:html flex="1">
|
|
<children/>
|
|
</xul:html>
|
|
</xul:box>
|
|
</content>
|
|
</binding>
|
|
|
|
<binding id="legend" extends="xul:box">
|
|
<content>
|
|
<xul:html flex="1">
|
|
<children/>
|
|
</xul:html>
|
|
</content>
|
|
</binding>
|
|
|
|
</bindings>
|
|
|
|
|