diff options
Diffstat (limited to 'comm/mail/base/content/profileDowngrade.xhtml')
-rw-r--r-- | comm/mail/base/content/profileDowngrade.xhtml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/comm/mail/base/content/profileDowngrade.xhtml b/comm/mail/base/content/profileDowngrade.xhtml new file mode 100644 index 0000000000..4768f930fb --- /dev/null +++ b/comm/mail/base/content/profileDowngrade.xhtml @@ -0,0 +1,48 @@ +<?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://global/skin/global.css" type="text/css"?> +<?xml-stylesheet href="chrome://messenger/skin/profileDowngrade.css" type="text/css"?> + +<!DOCTYPE html [ +<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd"> +%brandDTD; +<!ENTITY % profileDTD SYSTEM "chrome://messenger/locale/profileDowngrade.dtd"> +%profileDTD; +]> +<html xmlns="http://www.w3.org/1999/xhtml" + xmlns:html="http://www.w3.org/1999/xhtml" + xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + scrolling="false"> +<head> + <title>&window.title;</title> + <script defer="defer" src="chrome://global/content/customElements.js"></script> + <script defer="defer" src="profileDowngrade.js"></script> +</head> +<body> +<xul:dialog buttonlabelextra1="&window.create;" +#ifdef XP_WIN + buttonlabelaccept="&window.quit-win;" +#else + buttonlabelaccept="&window.quit-nonwin;" +#endif + buttons="accept,extra1" buttonpack="end" + nobuttonspacer="true"> + <div id="contentWrapper"> + <img src="chrome://messenger/skin/icons/new/activity/info.svg" + alt="" + role="presentation" /> + <div> + <p id="nosync">&window.nosync2;</p> + <p> + <a class="text-link" + onclick="moreInfo(event);" + onkeypress="moreInfo(event);">&window.moreinfo;</a> + </p> + </div> + </div> +</xul:dialog> +</body> +</html> |