Bug 1891340 - Part 1: Add parameters to customize the before and after icon tints...
[gecko.git] / toolkit / profile / content / profileSelection.xhtml
blob201abfc259c2548e4101a4ea3436cd3de253f406
1 <?xml version="1.0"?>
2 <!-- -*- Mode: SGML; indent-tabs-mode: nil; -*- -->
3 <!--
5 This Source Code Form is subject to the terms of the Mozilla Public
6 - License, v. 2.0. If a copy of the MPL was not distributed with this
7 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
9 <!DOCTYPE window>
11 <window
12 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
13 xmlns:html="http://www.w3.org/1999/xhtml"
14 class="non-resizable"
15 data-l10n-id="profile-selection-window"
16 orient="vertical"
17 prefwidth="min-width"
18 style="min-width: 30em"
19 onload="startup();"
21 <dialog
22 id="profileWindow"
23 buttons="accept,cancel"
24 buttonidaccept="profile-selection-button-accept"
25 buttonidcancel="profile-selection-button-cancel"
27 <linkset>
28 <html:link
29 rel="stylesheet"
30 href="chrome://mozapps/skin/profileSelection.css"
33 <html:link rel="localization" href="branding/brand.ftl" />
34 <html:link
35 rel="localization"
36 href="toolkit/global/profileSelection.ftl"
38 </linkset>
40 <script src="chrome://global/content/customElements.js" />
42 <stringbundle
43 id="bundle_profileManager"
44 src="chrome://mozapps/locale/profile/profileSelection.properties"
46 <stringbundle
47 id="bundle_brand"
48 src="chrome://branding/locale/brand.properties"
51 <script src="chrome://mozapps/content/profile/profileSelection.js" />
53 <description
54 class="label"
55 data-l10n-id="profile-manager-description"
56 ></description>
58 <separator class="thin" />
60 <hbox class="indent">
61 <vbox id="managebuttons">
62 <button
63 id="newbutton"
64 data-l10n-id="profile-selection-new-button"
65 oncommand="CreateProfileWizard();"
67 <button
68 id="renbutton"
69 data-l10n-id="profile-selection-rename-button"
70 oncommand="RenameProfile();"
72 <button
73 id="delbutton"
74 data-l10n-id="profile-selection-delete-button"
75 oncommand="ConfirmDelete();"
77 </vbox>
79 <vbox id="profilesContainer">
80 <richlistbox
81 id="profiles"
82 class="theme-listbox"
83 seltype="single"
84 ondblclick="onProfilesDblClick(event)"
85 onkeypress="onProfilesKey(event);"
87 </richlistbox>
89 <!-- Bug 257777 -->
90 <checkbox
91 id="offlineState"
92 data-l10n-id="profile-manager-work-offline"
93 native="true"
96 <checkbox
97 id="autoSelectLastProfile"
98 data-l10n-id="profile-manager-use-selected"
99 native="true"
101 </vbox>
102 </hbox>
103 </dialog>
104 </window>