From b15498b405a791b3b333fbb8268242d7bc7febda Mon Sep 17 00:00:00 2001
From: donchambers <donchambers>
Date: Sun, 9 Sep 2007 23:22:46 +0000
Subject: [PATCH] BP: style.css: Catetories sidebar margin added, add row
 classes to plugin_calendar.tpl, comment out favicon link

---
 templates/bulletproof/index.tpl           | 4 ++--
 templates/bulletproof/plugin_calendar.tpl | 6 +++---
 templates/bulletproof/style.css           | 4 ++++
 3 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/templates/bulletproof/index.tpl b/templates/bulletproof/index.tpl
index e9fc757..80afc2e 100644
--- a/templates/bulletproof/index.tpl
+++ b/templates/bulletproof/index.tpl
@@ -7,7 +7,6 @@
  "http://www.w3.org/TR/html4/loose.dtd">
 {/if}
 
-<!-- <html xmlns="http://www.w3.org/1999/xhtml"> -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{$lang}" lang="{$lang}">
 <head>
    <title>{$head_title|@default:$blogTitle} {if $head_subtitle} - {$head_subtitle}{/if}</title>
@@ -16,7 +15,8 @@
    <link rel="alternate"  type="application/rss+xml" title="{$blogTitle} RSS feed" href="{$serendipityBaseURL}{$serendipityRewritePrefix}feeds/index.rss2" />
    <link rel="alternate"  type="application/x.atom+xml"  title="{$blogTitle} Atom feed"  href="{$serendipityBaseURL}{$serendipityRewritePrefix}feeds/atom.xml" />
    {if $entry_id}<link rel="pingback" href="{$serendipityBaseURL}comment.php?type=pingback&amp;entry_id={$entry_id}" />{/if}
-   <link rel="shortcut icon" href="{$serendipityBaseURL}favicon.ico" />
+<!-- uncomment the line below if your site uses a favicon -->
+   <!--   <link rel="shortcut icon" href="{$serendipityBaseURL}favicon.ico" /> -->
    <!-- base styles needed for bulletproof -->
    <link rel="stylesheet" type="text/css" href="{serendipity_getFile file="base.css"}" />
    <!-- style.css -->
diff --git a/templates/bulletproof/plugin_calendar.tpl b/templates/bulletproof/plugin_calendar.tpl
index 38125c5..3f419ab 100644
--- a/templates/bulletproof/plugin_calendar.tpl
+++ b/templates/bulletproof/plugin_calendar.tpl
@@ -41,10 +41,10 @@
 </tfoot>
 <tbody>
     {foreach from=$plugin_calendar_weeks item="week"}
-        <tr class="serendipity_calendar">
+        <tr class="serendipity_calendar {cycle values="row1, row2, row3, row4, row5, row6"}">
         {foreach from=$week.days item="day"}
-            <td class="serendipity_calendarDay {$day.classes}"{if isset($day.properties.Title)} title="{$day.properties.Title}"{/if}>{if isset($day.properties.Active) and $day.properties.Active}
-				<a href="{$day.properties.Link}">{/if}{$day.name|@default:"&#160;"}{if isset($day.properties.Active) and $day.properties.Active}</a>{/if}</td>
+            <td class="serendipity_calendarDay {$day.classes}"}"{if isset($day.properties.Title)} title="{$day.properties.Title}"{/if}>{if isset($day.properties.Active) and $day.properties.Active}
+                <a href="{$day.properties.Link}">{/if}{$day.name|@default:"&#160;"}{if isset($day.properties.Active) and $day.properties.Active}</a>{/if}</td>
         {/foreach}
         </tr>
     {/foreach}
diff --git a/templates/bulletproof/style.css b/templates/bulletproof/style.css
index 530a30a..9af4d28 100644
--- a/templates/bulletproof/style.css
+++ b/templates/bulletproof/style.css
@@ -403,4 +403,8 @@ input#serendipityQuickSearchTermField {
 /* overide serendipitySideBarItem overflow: hidden just for sidebar quicksearch livesearch_result */
 .container_serendipity_quicksearch_plugin{
     overflow: visible !important;
+}
+
+ul#serendipity_categories_list input{
+    margin-left: 0;
 }
\ No newline at end of file
-- 
2.39.5