r656 - trunk/web

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Thu Mar 23 18:57:38 EST 2006


Author: floam
Date: 2006-03-23 18:57:38 -0500 (Thu, 23 Mar 2006)
New Revision: 656

Modified:
   trunk/web/ioq3.css
Log:
Makes stuff render better in IE6 -- the tables will be missing the separators in the cvar list and such because it doesn't support empty-cells. That'll just need to remain because it's not very obvious and I guess it'll look a bit better when everyone is on IE7 in a year.



Modified: trunk/web/ioq3.css
===================================================================
--- trunk/web/ioq3.css	2006-03-23 07:42:39 UTC (rev 655)
+++ trunk/web/ioq3.css	2006-03-23 23:57:38 UTC (rev 656)
@@ -95,7 +95,9 @@
 table {
 	border: none;
 	border-spacing: 0;
+	border-collapse: collapse;
 	margin-left: 1em;
+	empty-cells: show;
 }
 
 caption {
@@ -161,18 +163,18 @@
 h3.windows, h3.linux, h3.apple {
 	padding-top: 16px;
 	padding-left: 50px;
-	height: 32px;
+	height: 48px;
 	background-repeat: no-repeat;
 }
 
-.windows {
+h3.windows {
 	background-image: url('images/windows.png');
 }
 
-.linux {
+h3.linux {
 	background-image: url('images/linux.png');
 }
 
-.apple {
+h3.apple {
 	background-image: url('images/apple.png');
 }




More information about the quake3-commits mailing list