Revision control

Copy as Markdown

Other Tools

<?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/. -->
<html
style="min-width: 600px"
scrolling="false"
>
<head>
<title><!-- identity-list-title --></title>
<link
rel="stylesheet"
/>
<link rel="stylesheet" href="chrome://messenger/skin/accountManage.css" />
<script
defer="defer"
></script>
</head>
<html:body
>
<dialog
buttons="accept"
buttonlabelaccept="&identitiesListClose.label;"
buttonaccesskeyaccept="&identitiesListClose.accesskey;"
style="height: 100vh"
>
<stringbundle
id="bundle_prefs"
/>
<commandset>
<command id="cmd_add" oncommand="openIdentityEditor(null);" />
<command id="cmd_edit" oncommand="onEdit(event);" disabled="true" />
<command
id="cmd_default"
oncommand="onSetDefault(event);"
disabled="true"
/>
<command id="cmd_delete" oncommand="onDelete(event);" disabled="true" />
</commandset>
<keyset>
<key keycode="VK_INSERT" command="cmd_add" />
<key keycode="VK_DELETE" command="cmd_delete" />
</keyset>
<label control="identitiesList">&identitiesListManageDesc.label;</label>
<separator class="thin" />
<html:div class="grid-two-column-auto-min" style="flex: 1">
<richlistbox
id="identitiesList"
ondblclick="onEdit(event);"
onselect="updateButtons();"
seltype="single"
flex="1"
style="min-height: 10em; max-height: 20em"
/>
<html:div class="flex-content-column">
<button
id="addButton"
command="cmd_add"
label="&identitiesListAdd.label;"
accesskey="&identitiesListAdd.accesskey;"
/>
<button
id="editButton"
disabled="true"
command="cmd_edit"
label="&identitiesListEdit.label;"
accesskey="&identitiesListEdit.accesskey;"
/>
<button
id="setDefaultButton"
disabled="true"
command="cmd_default"
label="&identitiesListDefault.label;"
accesskey="&identitiesListDefault.accesskey;"
/>
<button
id="deleteButton"
disabled="true"
command="cmd_delete"
label="&identitiesListDelete.label;"
accesskey="&identitiesListDelete.accesskey;"
/>
</html:div>
</html:div>
</dialog>
</html:body>
</html>