47 строки
1.8 KiB
HTML
47 строки
1.8 KiB
HTML
<?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/. -->
|
|
|
|
<?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/markByDate.dtd">
|
|
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
title="&messageMarkByDate.label;"
|
|
lightweightthemes="true"
|
|
onload="onLoad();">
|
|
<dialog buttons="accept,cancel">
|
|
<script src="chrome://global/content/globalOverlay.js"/>
|
|
<script src="chrome://global/content/editMenuOverlay.js"/>
|
|
<script src="chrome://messenger/content/markByDate.js"/>
|
|
<script src="chrome://messenger/content/dateFormat.js"/>
|
|
<script src="chrome://messenger/content/dialogShadowDom.js"/>
|
|
|
|
<hbox align="center" pack="end">
|
|
<label id="lowerDateLabel" control="lowerDate"
|
|
value="&markByDateLower.label;"
|
|
accesskey="&markByDateLower.accesskey;"/>
|
|
<html:input id="lowerDate"
|
|
type="text"
|
|
class="input-inline"
|
|
aria-labelledby="lowerDateLabel"
|
|
size="11"/>
|
|
</hbox>
|
|
<hbox align="center" pack="end">
|
|
<label id="upperDateLabel" control="upperDate"
|
|
value="&markByDateUpper.label;"
|
|
accesskey="&markByDateUpper.accesskey;"/>
|
|
<html:input id="upperDate"
|
|
type="text"
|
|
class="input-inline"
|
|
aria-labelledby="upperDateLabel"
|
|
size="11"/>
|
|
</hbox>
|
|
</dialog>
|
|
</window>
|