BP: style.css: Catetories sidebar margin added, add row classes to plugin_calendar.tpl, comment out favicon link

This commit is contained in:
Don Chambers 2007-09-09 23:23:09 +00:00
parent 977d9ffbf5
commit 1ec882c1e6
3 changed files with 9 additions and 5 deletions

View File

@ -7,7 +7,6 @@
"http://www.w3.org/TR/html4/loose.dtd"> "http://www.w3.org/TR/html4/loose.dtd">
{/if} {/if}
<!-- <html xmlns="http://www.w3.org/1999/xhtml"> -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{$lang}" lang="{$lang}"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{$lang}" lang="{$lang}">
<head> <head>
<title>{$head_title|@default:$blogTitle} {if $head_subtitle} - {$head_subtitle}{/if}</title> <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/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" /> <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} {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 --> <!-- base styles needed for bulletproof -->
<link rel="stylesheet" type="text/css" href="{serendipity_getFile file="base.css"}" /> <link rel="stylesheet" type="text/css" href="{serendipity_getFile file="base.css"}" />
<!-- style.css --> <!-- style.css -->

View File

@ -41,10 +41,10 @@
</tfoot> </tfoot>
<tbody> <tbody>
{foreach from=$plugin_calendar_weeks item="week"} {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"} {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} <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> <a href="{$day.properties.Link}">{/if}{$day.name|@default:"&#160;"}{if isset($day.properties.Active) and $day.properties.Active}</a>{/if}</td>
{/foreach} {/foreach}
</tr> </tr>
{/foreach} {/foreach}

View File

@ -403,4 +403,8 @@ input#serendipityQuickSearchTermField {
/* overide serendipitySideBarItem overflow: hidden just for sidebar quicksearch livesearch_result */ /* overide serendipitySideBarItem overflow: hidden just for sidebar quicksearch livesearch_result */
.container_serendipity_quicksearch_plugin{ .container_serendipity_quicksearch_plugin{
overflow: visible !important; overflow: visible !important;
}
ul#serendipity_categories_list input{
margin-left: 0;
} }