mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-31 11:01:40 +00:00
Land new about dialog
This commit is contained in:
parent
c17507209d
commit
fbfda96b3e
Binary file not shown.
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 71 KiB |
@ -37,6 +37,7 @@
|
||||
# ***** END LICENSE BLOCK ***** -->
|
||||
|
||||
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://messenger/skin/aboutDialog.css" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
@ -47,10 +48,11 @@
|
||||
|
||||
<dialog xmlns:html="http://www.w3.org/1999/xhtml"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
id="aboutDialog"
|
||||
buttons="accept"
|
||||
onload="onLoad();"
|
||||
title="&aboutDialog.title;"
|
||||
style="width: 20em; height: 16.3em;">
|
||||
style="width: 300px; height: 16.3em;">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
@ -76,21 +78,26 @@
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<vbox align="center" flex="1">
|
||||
<vbox flex="1" id="clientBox">
|
||||
<image src="chrome://messenger/content/about-thunderbird.png"/>
|
||||
|
||||
<hbox>
|
||||
<vbox>
|
||||
<label id="hidversionField" style="padding: 0px; visibility: hidden; font-weight: bold;"/>
|
||||
<textbox id="versionField" readonly="true" class="plain" style="padding-left: 6px !important; font-weight: bold;" tabindex="2"/>
|
||||
</vbox>
|
||||
</hbox>
|
||||
<vbox id="detailsBox" align="center" flex="1">
|
||||
<separator class="thin"/>
|
||||
|
||||
<separator class="thin"/>
|
||||
<hbox>
|
||||
<vbox>
|
||||
<label id="hidversionField" style="padding: 0px; visibility: hidden; font-weight: bold;"/>
|
||||
<textbox id="versionField" readonly="true" class="plain" style="padding-left: 6px !important;" tabindex="2"/>
|
||||
</vbox>
|
||||
</hbox>
|
||||
|
||||
<html:a id="copyrightLink" onclick="return loadExternalLink();" href="©rightLink;" style="display: block; color: blue; text-decoration: underline;" tabindex="3">©right;</html:a>
|
||||
<separator class="thin"/>
|
||||
|
||||
<html:a id="copyrightLink" onclick="return loadExternalLink();" href="©rightLink;" style="display: block; color: blue; text-decoration: underline;" tabindex="3">©right;</html:a>
|
||||
</vbox>
|
||||
</vbox>
|
||||
<separator class="groove"/>
|
||||
|
||||
<separator class="groove" id="groove"/>
|
||||
|
||||
<!-- Localizable strings (from .dtd) -->
|
||||
<strings style="display:none;">
|
||||
|
@ -29,6 +29,7 @@ messenger.jar:
|
||||
classic.jar:
|
||||
skin/classic/messenger/icons/twisty-open.gif (skin/icons/twisty-open.gif)
|
||||
skin/classic/messenger/icons/twisty-clsd.gif (skin/icons/twisty-clsd.gif)
|
||||
skin/classic/messenger/aboutDialog.css (skin/aboutDialog.css)
|
||||
+ skin/classic/global/tree.css (skin/tree.css)
|
||||
+ skin/classic/global/Preview.png (skin/Preview.png)
|
||||
+ skin/classic/global/contents.rdf (skin/contents.rdf)
|
||||
|
32
mail/base/skin/aboutDialog.css
Normal file
32
mail/base/skin/aboutDialog.css
Normal file
@ -0,0 +1,32 @@
|
||||
#aboutDialog {
|
||||
padding: 0px 0px 10px 0px;
|
||||
}
|
||||
|
||||
#clientBox {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
#brandName {
|
||||
font-weight: bold; font-size: larger;
|
||||
}
|
||||
|
||||
#detailsBox {
|
||||
padding: 8px 10px 10px 8px;
|
||||
}
|
||||
|
||||
#versionField {
|
||||
background-color: #FFFFFF;
|
||||
-moz-appearance: none;
|
||||
border: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#copyright {
|
||||
color: blue;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#groove {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user