Author: dashorst
Date: Mon Jun 25 09:17:26 2007
New Revision: 550535

URL: http://svn.apache.org/viewvc?view=rev&rev=550535
Log:
Fixed font issue for Windows kids, according to 
http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/

Added:
    incubator/wicket/common/docs/confluence/
Modified:
    incubator/wicket/common/wicket-site-skin/src/main/resources/style/wicket.css

Modified: 
incubator/wicket/common/wicket-site-skin/src/main/resources/style/wicket.css
URL: 
http://svn.apache.org/viewvc/incubator/wicket/common/wicket-site-skin/src/main/resources/style/wicket.css?view=diff&rev=550535&r1=550534&r2=550535
==============================================================================
--- 
incubator/wicket/common/wicket-site-skin/src/main/resources/style/wicket.css 
(original)
+++ 
incubator/wicket/common/wicket-site-skin/src/main/resources/style/wicket.css 
Mon Jun 25 09:17:26 2007
@@ -6,7 +6,7 @@
        background:#787878 url('background.gif');
        margin:0px;
        padding:0px;
-       font-family: "Lucida Sans Regular", "Lucida Grande", "Tahoma", Verdana;
+    font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, 
Helvetica, sans-serif;
        font-size: 76%;
        color:#4a4a4a;
        height:100%;
@@ -33,7 +33,7 @@
 }
 
 #header{
-       background:#e8590a url('logo.png');
+       background:#e8590a url('logo_graduated.png');
        width:899px;
        height:108px;
 }
@@ -43,7 +43,7 @@
        height:auto;
 }
 
-p, table, h1, h2, h3, h4, h5, h6, h7, div.code, dd, dt {
+p, table, h1, h2, h3, h4, h5, h6, h7, div.code {
        padding-left:25px;
        padding-right : 1em;
 }
@@ -95,7 +95,8 @@
        color:#4a4a4a;
 }
 
-#contentBody {
+
+#contentbody{
        background:#ffffff;
        width:668px;
        padding-top:20px;
@@ -103,7 +104,7 @@
        float:left
 }
 
-h1, h2, .section h3, .blogHeading {
+h1, h2, .blogHeading {
        color:#eb5a0a;
        font-weight:bold;
        font-size:1.2em;
@@ -113,7 +114,7 @@
        text-decoration : none;
 }
 
-h1, .section h2 {
+h1 {
        background:#ffffff url('wicket.png') no-repeat left bottom;
        min-height : 20px;
        height : 20px;
@@ -135,7 +136,7 @@
 }
 
 #logo {
-       background: #ffffff url('logo.png') no-repeat left bottom;
+       background: #ffffff url('logo_graduated.png') no-repeat left bottom;
        height : 108px;
        width : 300px;
        position : absolute;
@@ -144,6 +145,7 @@
 }
 
 #incubator {
+       display : none;
        background: #ffffff url('nowincubating.png') no-repeat left bottom;
        height : 97px;
        width : 139px;
@@ -195,7 +197,7 @@
 }
 
 pre {
-       font-family: "Lucida Sans Regular", "Lucida Grande", "Tahoma", Verdana;
+       font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", 
Verdana, Arial, Helvetica, sans-serif;
        font-size : 120%;
 }
 
@@ -206,8 +208,11 @@
        font-weight : bold;
 }
 
-div.section {
-       padding : 0;
-       margin: 0;
-       display : inline;
+span sup {
+       display : none;
+}
+
+/* Windows Lucida font fix */
+strong, em, h1, h2, h3, h4, h5, h6 {
+    font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", 
Verdana, Arial, Helvetica, sans-serif;
 }


Reply via email to