Land new about dialog

This commit is contained in:
scott%scott-macgregor.org 2003-08-12 21:08:58 +00:00
parent c17507209d
commit fbfda96b3e
4 changed files with 51 additions and 11 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 71 KiB

View File

@ -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="&copyrightLink;" style="display: block; color: blue; text-decoration: underline;" tabindex="3">&copyright;</html:a>
<separator class="thin"/>
<html:a id="copyrightLink" onclick="return loadExternalLink();" href="&copyrightLink;" style="display: block; color: blue; text-decoration: underline;" tabindex="3">&copyright;</html:a>
</vbox>
</vbox>
<separator class="groove"/>
<separator class="groove" id="groove"/>
<!-- Localizable strings (from .dtd) -->
<strings style="display:none;">

View File

@ -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)

View 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;
}