1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/components/preferences/selectBookmark.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,44 @@ 1.4 +<?xml version="1.0"?> 1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.6 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.8 + 1.9 + 1.10 +<?xml-stylesheet href="chrome://browser/content/places/places.css"?> 1.11 + 1.12 +<?xml-stylesheet href="chrome://global/skin/"?> 1.13 +<?xml-stylesheet href="chrome://browser/skin/places/places.css"?> 1.14 + 1.15 +<?xul-overlay href="chrome://browser/content/places/placesOverlay.xul"?> 1.16 + 1.17 +<!DOCTYPE dialog SYSTEM "chrome://browser/locale/preferences/selectBookmark.dtd"> 1.18 + 1.19 +<dialog id="selectBookmarkDialog" 1.20 + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.21 + title="&selectBookmark.title;" style="width: 32em;" 1.22 + persist="screenX screenY width height" screenX="24" screenY="24" 1.23 + onload="SelectBookmarkDialog.init();" 1.24 + ondialogaccept="SelectBookmarkDialog.accept();"> 1.25 + 1.26 + <script type="application/javascript" 1.27 + src="chrome://browser/content/preferences/selectBookmark.js"/> 1.28 + 1.29 + <description>&selectBookmark.label;</description> 1.30 + 1.31 + <separator class="thin"/> 1.32 + 1.33 + <tree id="bookmarks" flex="1" type="places" 1.34 + style="height: 15em;" 1.35 + hidecolumnpicker="true" 1.36 + seltype="single" 1.37 + ondblclick="SelectBookmarkDialog.onItemDblClick();" 1.38 + onselect="SelectBookmarkDialog.selectionChanged();"> 1.39 + <treecols> 1.40 + <treecol id="title" flex="1" primary="true" hideheader="true"/> 1.41 + </treecols> 1.42 + <treechildren id="bookmarksChildren" flex="1"/> 1.43 + </tree> 1.44 + 1.45 + <separator class="thin"/> 1.46 + 1.47 +</dialog>