blob: c0ed60d95d9cad97a85963959d8f80238ae3c0a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<?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 type="text/css" href="chrome://messenger/skin/messenger.css"?>
<?xml-stylesheet type="text/css" href="chrome://calendar/skin/calendar-invitations-dialog.css"?>
<?xml-stylesheet type="text/css" href="chrome://messenger/skin/colors.css"?>
<?xml-stylesheet type="text/css" href="chrome://messenger/skin/themeableDialog.css"?>
<!DOCTYPE html [ <!ENTITY % dtd1 SYSTEM "chrome://calendar/locale/calendar-invitations-dialog.dtd">
%dtd1; ]>
<html
id="calendar-invitations-dialog"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:html="http://www.w3.org/1999/xhtml"
icon="calendar-general-dialog"
lightweightthemes="true"
persist="screenX screenY"
style="min-width: 600px; min-height: 350px"
scrolling="false"
>
<head>
<title>&calendar.invitations.dialog.invitations.text;</title>
<link rel="localization" href="calendar/calendar-invitations-dialog.ftl" />
<script defer="defer" src="chrome://messenger/content/dialogShadowDom.js"></script>
<script defer="defer" src="chrome://calendar/content/calendar-ui-utils.js"></script>
<script defer="defer" src="chrome://calendar/content/calendar-invitations-dialog.js"></script>
</head>
<html:body xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<dialog class="scrollable" buttons="accept,cancel">
<div id="invitationContainer">
<richlistbox id="invitations-listbox" />
<hbox id="updating-box" align="center" pack="center" hidden="true">
<label value="&calendar.invitations.dialog.statusmessage.updating.text;" crop="end" />
<html:img
class="calendar-invitations-updating-icon"
src="chrome://global/skin/icons/loading.png"
alt=""
/>
</hbox>
<hbox id="noinvitations-box" align="center" pack="center" hidden="true">
<label
value="&calendar.invitations.dialog.statusmessage.noinvitations.text;"
crop="end"
/>
</hbox>
</div>
</dialog>
</html:body>
</html>
|