34 строки
1.5 KiB
HTML
34 строки
1.5 KiB
HTML
<?xml version="1.0"?> <!-- -*- Mode: xml; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- -->
|
|
<!-- 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/. -->
|
|
|
|
<?xml-stylesheet href="chrome://messenger/skin/dialogs.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://messenger/skin/input-fields.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://messenger/skin/themeableDialog.css" type="text/css"?>
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://messenger/locale/renameFolderDialog.dtd">
|
|
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
title="&renameFolderDialog.title;"
|
|
lightweightthemes="true"
|
|
style="width: 25em;"
|
|
onload="onLoad();">
|
|
<dialog buttonlabelaccept="&accept.label;"
|
|
buttonaccesskeyaccept="&accept.accesskey;">
|
|
<script src="chrome://global/content/globalOverlay.js"/>
|
|
<script src="chrome://global/content/editMenuOverlay.js"/>
|
|
<script src="chrome://messenger/content/renameFolderDialog.js"/>
|
|
<script src="chrome://messenger/content/dialogShadowDom.js"/>
|
|
|
|
<label id="nameLabel" value="&rename.label;" accesskey="&rename.accesskey;"
|
|
control="name"/>
|
|
<html:input id="name"
|
|
type="text"
|
|
class="input-inline"
|
|
aria-labelledby="nameLabel"
|
|
oninput="doEnabling();"/>
|
|
</dialog>
|
|
</window>
|