Update of /cvsroot/php-blog/serendipity/templates/default
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19186/default
Modified Files:
style.css
Log Message:
XML is case sensitive, and since all XHTML elements are lowercase we have to use lowercase in the CSS to select them. I think I got them all...
Index: style.css
===================================================================
RCS file: /cvsroot/php-blog/serendipity/templates/default/style.css,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- style.css 2 Sep 2004 17:30:43 -0000 1.34
+++ style.css 2 Sep 2004 17:41:59 -0000 1.35
@@ -37,7 +37,7 @@
vertical-align: top;
}
-BODY {
+body {
font-size: 10pt;
margin: 0;
background-color: #D2DFF2;
@@ -46,16 +46,16 @@
margin-bottom: 30px;
}
-INPUT, TEXTAREA {
+input, textarea {
font-size: 10pt;
font-family: verdana, arial, helvetica, sans-serif;
}
-TH, TD {
+th, td {
font-size: 10pt;
}
-P, TD, TH, DIV, SPAN {
+p, td, th, div, span {
font-family: verdana, arial, helvetica, sans-serif;
}
@@ -174,15 +174,15 @@
border: 0px;
}
-TD.serendipity_commentsLabel {
+td.serendipity_commentsLabel {
font-size: 12px;
font-weight: bold;
vertical-align: top;
}
-TD.serendipity_commentsValue input,
-TD.serendipity_commentsValue select,
-TD.serendipity_commentsValue textarea {
+td.serendipity_commentsValue input,
+td.serendipity_commentsValue select,
+td.serendipity_commentsValue textarea {
font-size: 12px;
padding: 2px;
width: 400px;
@@ -215,42 +215,42 @@
border-bottom: 2px solid #36558C;
}
-TD.serendipity_admin {
+td.serendipity_admin {
padding: 10px;
}
-A:link,
-A:visited,
-A:active {
+a:link,
+a:visited,
+a:active {
color: #003366;
text-decoration: underline;
}
-A:hover {
+a:hover {
color: #000000;
text-decoration: underline;
}
-TABLE.serendipity_calendar TD {
+table.serendipity_calendar td {
font-size:11px;
padding: 3px;
}
-TABLE.serendipity_calendar A {
+table.serendipity_calendar a {
color: #FF0000;
font-weight: bold;
text-decoration:none;
}
-TABLE.serendipity_calendar A:hover {
+table.serendipity_calendar a:hover {
text-decoration: none;
}
-TD.serendipity_weekDayName {
+td.serendipity_weekDayName {
font-size:11px;
font-weight:bold;
}
-TD.serendipity_calendarHeader A:link,
-TD.serendipity_calendarHeader A:visited,
-TD.serendipity_calendarHeader A:hover {
+td.serendipity_calendarHeader a:link,
+td.serendipity_calendarHeader a:visited,
+td.serendipity_calendarHeader a:hover {
border: 0;
text-decoration: none;
}
@@ -259,7 +259,7 @@
padding-left: 10px;
}
-div.serendipityPlug A {
+div.serendipityPlug a {
text-decoration: none;
border: 0px;
}
|