editBookmarkPanel.inc.xhtml (4493B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 # You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 <div id="editBookmarkPanelContent"> 6 <label id="editBMPanel_itemsCountText" 7 class="editBMPanel_selectionCount"/> 8 9 <label data-l10n-id="bookmark-overlay-name-2" 10 class="editBMPanel_nameRow hideable" 11 control="editBMPanel_namePicker"/> 12 <html:input id="editBMPanel_namePicker" 13 class="editBMPanel_nameRow hideable" 14 type="text"/> 15 16 <label data-l10n-id="bookmark-overlay-url" 17 class="editBMPanel_locationRow hideable" 18 control="editBMPanel_locationField"/> 19 <html:input id="editBMPanel_locationField" 20 class="editBMPanel_locationRow uri-element hideable" 21 type="text"/> 22 23 <label data-l10n-id="bookmark-overlay-location-2" 24 class="editBMPanel_folderRow hideable" 25 control="editBMPanel_folderMenuList"/> 26 <hbox class="editBMPanel_folderRow hideable"> 27 <menulist id="editBMPanel_folderMenuList" 28 class="folder-icon" 29 flex="1" 30 size="large"> 31 <menupopup> 32 <!-- Static item for special folders --> 33 <menuitem id="editBMPanel_toolbarFolderItem" 34 class="menuitem-iconic folder-icon"/> 35 <menuitem id="editBMPanel_bmRootItem" 36 class="menuitem-iconic folder-icon"/> 37 <menuitem id="editBMPanel_unfiledRootItem" 38 class="menuitem-iconic folder-icon"/> 39 <menuseparator id="editBMPanel_chooseFolderSeparator"/> 40 <menuitem id="editBMPanel_chooseFolderMenuItem" 41 data-l10n-id="bookmark-overlay-choose" 42 class="menuitem-iconic folder-icon"/> 43 <menuseparator id="editBMPanel_foldersSeparator" hidden="true"/> 44 </menupopup> 45 </menulist> 46 <button id="editBMPanel_foldersExpander" 47 class="expander-down panel-button" 48 data-l10n-id="bookmark-overlay-folders-expander2"/> 49 </hbox> 50 51 <vbox id="editBMPanel_folderTreeRow" 52 class="hideable" 53 hidden="true"> 54 <!-- editBMPanel_folderTree will go here when this is shown --> 55 <hbox id="editBMPanel_newFolderBox"> 56 <button data-l10n-id="bookmark-overlay-new-folder-button" 57 id="editBMPanel_newFolderButton"/> 58 </hbox> 59 </vbox> 60 61 <label data-l10n-id="bookmark-overlay-tags-2" 62 class="editBMPanel_tagsRow hideable" 63 control="editBMPanel_tagsField"/> 64 <hbox class="editBMPanel_tagsRow hideable"> 65 <html:input id="editBMPanel_tagsField" 66 type="text" 67 is="autocomplete-input" 68 style="flex: 1;" 69 autocompletesearch="places-tag-autocomplete" 70 autocompletepopup="editBMPanel_tagsAutocomplete" 71 completedefaultindex="true" 72 completeselectedindex="true" 73 tabscrolling="true" 74 data-l10n-id="bookmark-overlay-tags-empty-description" 75 data-l10n-attrs="placeholder" 76 aria-describedby="tags-field-info"/> 77 <popupset> 78 <panel is="autocomplete-richlistbox-popup" 79 type="autocomplete-richlistbox" 80 id="editBMPanel_tagsAutocomplete" 81 role="group" 82 noautofocus="true" 83 hidden="true" 84 overflowpadding="4" 85 norolluponanchor="true" 86 nomaxresults="true"/> 87 </popupset> 88 <button id="editBMPanel_tagsSelectorExpander" 89 class="expander-down panel-button" 90 data-l10n-id="bookmark-overlay-tags-expander2"/> 91 </hbox> 92 93 <div id="tags-field-info" 94 class="editBMPanel_tagsRow caption-label hideable" 95 data-l10n-id="bookmark-overlay-tags-caption-label"/> 96 97 <div id="editBMPanel_tagsSelectorRow" 98 class="hideable" 99 hidden="true"> 100 <richlistbox id="editBMPanel_tagsSelector" styled="true"/> 101 </div> 102 103 <label data-l10n-id="bookmark-overlay-keyword-2" 104 class="editBMPanel_keywordRow hideable" 105 control="editBMPanel_keywordField"/> 106 <html:input id="editBMPanel_keywordField" 107 class="editBMPanel_keywordRow hideable" 108 type="text" 109 aria-describedby="keyword-field-info"/> 110 111 <div id="keyword-field-info" 112 class="editBMPanel_keywordRow caption-label hideable" 113 data-l10n-id="bookmark-overlay-keyword-caption-label-2"/> 114 </div>