blob: 675d59195732b5613491144768eb31eb3db10ac2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?xml version="1.0"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<bindings id="globalBindings"
xmlns="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:xbl="http://www.mozilla.org/xbl">
<binding id="texttab">
<content>
<xul:image class="box-texttab-left"/>
<xul:vbox class="box-texttab-text-container" xbl:inherits="value" flex="1">
<xul:spacer flex="1"/>
<xul:label class="box-texttab-text" xbl:inherits="value=label" crop="right"/>
<xul:spacer flex="1"/>
</xul:vbox>
<xul:image class="box-texttab-right"/>
<xul:spacer class="box-texttab-right-space"/>
</content>
</binding>
<binding id="sidebar-header-box" extends="xul:box">
<content align="center">
<xul:label class="sidebar-header-text" xbl:inherits="value=label,crop" crop="right" flex="1"/>
<xul:box>
<children/>
</xul:box>
</content>
</binding>
</bindings>
|