|
From: <br...@us...> - 2009-03-20 07:55:44
|
Revision: 3855
http://openvrml.svn.sourceforge.net/openvrml/?rev=3855&view=rev
Author: braden
Date: 2009-03-20 07:55:35 +0000 (Fri, 20 Mar 2009)
Log Message:
-----------
Internet Explorer doesn't like mixing <button> with <a>.
Modified Paths:
--------------
htdocs/index.php
Modified: htdocs/index.php
===================================================================
--- htdocs/index.php 2009-03-20 07:38:38 UTC (rev 3854)
+++ htdocs/index.php 2009-03-20 07:55:35 UTC (rev 3855)
@@ -178,23 +178,27 @@
padding: 1.5em;
margin-bottom: 1.5em;
}
-.download button {
+.download .button {
display: block;
font-size: larger;
font-weight: bold;
color: white;
border-color: rgb(45%, 90%, 45%);
-/* border-color: rgb(60, 90, 60); */
background-color: rgb(0%, 75%, 0%);
padding: 0.5em;
-moz-border-radius: 0.5em;
margin-left: auto;
margin-right: auto;
+ border-style: outset;
+ border-width: 3px;
}
-.download button:hover {
+.download .button:hover {
border-color: rgb(50%, 100%, 50%);
background-color: rgb(0%, 80%, 0%);
}
+.download .button:active {
+ border-style: inset;
+}
.download p {
margin-bottom: 0;
}
@@ -269,7 +273,7 @@
<tr>
<td class="projinfo" valign="top">
<div class="download">
- <a href="http://sourceforge.net/project/platformdownload.php?group_id=7151"><button>Download Source</button></a>
+ <a class="button" href="http://sourceforge.net/project/platformdownload.php?group_id=7151">Download Source</a>
<p><em><a rel="next" href="download">Other download options…</a></em></p>
</div>
<div class="projsummary">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|