browser/components/preferences/selectBookmark.xul

branch
TOR_BUG_9701
changeset 15
b8a032363ba2
equal deleted inserted replaced
-1:000000000000 0:54a8b21aa17e
1 <?xml version="1.0"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
5
6
7 <?xml-stylesheet href="chrome://browser/content/places/places.css"?>
8
9 <?xml-stylesheet href="chrome://global/skin/"?>
10 <?xml-stylesheet href="chrome://browser/skin/places/places.css"?>
11
12 <?xul-overlay href="chrome://browser/content/places/placesOverlay.xul"?>
13
14 <!DOCTYPE dialog SYSTEM "chrome://browser/locale/preferences/selectBookmark.dtd">
15
16 <dialog id="selectBookmarkDialog"
17 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
18 title="&selectBookmark.title;" style="width: 32em;"
19 persist="screenX screenY width height" screenX="24" screenY="24"
20 onload="SelectBookmarkDialog.init();"
21 ondialogaccept="SelectBookmarkDialog.accept();">
22
23 <script type="application/javascript"
24 src="chrome://browser/content/preferences/selectBookmark.js"/>
25
26 <description>&selectBookmark.label;</description>
27
28 <separator class="thin"/>
29
30 <tree id="bookmarks" flex="1" type="places"
31 style="height: 15em;"
32 hidecolumnpicker="true"
33 seltype="single"
34 ondblclick="SelectBookmarkDialog.onItemDblClick();"
35 onselect="SelectBookmarkDialog.selectionChanged();">
36 <treecols>
37 <treecol id="title" flex="1" primary="true" hideheader="true"/>
38 </treecols>
39 <treechildren id="bookmarksChildren" flex="1"/>
40 </tree>
41
42 <separator class="thin"/>
43
44 </dialog>

mercurial