BP: removed conditional comment for pagination. Wrapped arrow in span and applied font-family in base.css. Replaced all » and « with » and « Added bottom padding in admincontent.

This commit is contained in:
Don Chambers 2008-12-07 22:54:09 +00:00
parent 2e450546c4
commit ccdbcfce96
5 changed files with 10 additions and 8 deletions

View File

@ -92,7 +92,7 @@ a:hover {
/* approximately equal to frontend #content */
.serendipityAdminContent {
padding: 3px 3px 0 8px;
padding: 3px 3px 10px 8px;
text-align: left;
}

View File

@ -89,7 +89,7 @@ a:hover {
/* approximately equal to frontend #content */
.serendipityAdminContent {
padding: 3px 8px 0 8px;
padding: 3px 8px 10px 8px;
text-align: left;
}

View File

@ -55,6 +55,8 @@ body {
list-style-type: none;
}
.pagearrow { font-family: Arial, sans-serif!important;} /* greatest cross browser support for left and right facing arrows */
#serendipityLeftSideBar,
#content {
float: left;

View File

@ -135,7 +135,7 @@
{$entry.body}
{if $entry.has_extended and not $is_single_entry and not $entry.is_extended}
{assign var="shorttitle" value=$entry.title|@truncate:50:'...'}
<span class="continue_reading"><a href="{$entry.link}#extended" title='{$CONST.VIEW_EXTENDED_ENTRY|@sprintf:$shorttitle}'>{$CONST.VIEW_EXTENDED_ENTRY|@sprintf:$shorttitle} &raquo;</a></span>
<span class="continue_reading"><a href="{$entry.link}#extended" title='{$CONST.VIEW_EXTENDED_ENTRY|@sprintf:$shorttitle}'>{$CONST.VIEW_EXTENDED_ENTRY|@sprintf:$shorttitle} &#187;</a></span>
{/if}
</div>
@ -393,7 +393,7 @@
<a title="{$CONST.PREVIOUS_PAGE}" href="{$footer_prev_page}"><img alt="{$CONST.PREVIOUS_PAGE}" src="{$serendipityHTTPPath}templates/{$template}/img/{$template_option.colorset}_back.png" /></a>
{/if}
{elseif $template_option.prev_next_style == 'text'}
<a title="{$CONST.PREVIOUS_PAGE}" href="{$footer_prev_page}">&laquo; {$CONST.PREVIOUS_PAGE}</a>&#160;&#160;
<a title="{$CONST.PREVIOUS_PAGE}" href="{$footer_prev_page}">&#171; {$CONST.PREVIOUS_PAGE}</a>&#160;&#160;
{/if}
{/if}
@ -415,7 +415,7 @@
<a title="{$CONST.NEXT_PAGE}" href="{$footer_next_page}"><img alt="{$CONST.NEXT_PAGE}" src="{$serendipityHTTPPath}templates/{$template}/img/{$template_option.colorset}_forward.png" /></a>
{/if}
{elseif $template_option.prev_next_style == 'text'}
<a title="{$CONST.NEXT_PAGE}" href="{$footer_next_page}">{$CONST.NEXT_PAGE} &raquo;</a>
<a title="{$CONST.NEXT_PAGE}" href="{$footer_next_page}">{$CONST.NEXT_PAGE} &#187;</a>
{/if}
{/if}
@ -429,7 +429,7 @@
{assign var="paginationStartPage" value="1"}
{/if}
{if $footer_prev_page}
<a title="{$CONST.PREVIOUS_PAGE}" href="{$footer_prev_page}"><!--[if lte IE 6]>&laquo;<![endif]--><!--[if gt IE 6]><!-->&#9668;<!--<![endif]--></a>
<a title="{$CONST.PREVIOUS_PAGE}" href="{$footer_prev_page}"><span class="pagearrow">&#9668;</span></a>
{/if}
{if $paginationStartPage > 1}
<a href="{'1'|string_format:$footer_pageLink}">1</a>
@ -451,7 +451,7 @@
<a href="{$footer_totalPages|string_format:$footer_pageLink}">{$footer_totalPages}</a>
{/if}
{if $footer_next_page}
<a title="{$CONST.NEXT_PAGE}" href="{$footer_next_page}"><!--[if lte IE 6]>&raquo;<![endif]--><!--[if gt IE 6]><!-->&#9658;<!--<![endif]--></a>
<a title="{$CONST.NEXT_PAGE}" href="{$footer_next_page}"><span class="pagearrow">&#9658;</span></a>
{/if}
</div>
{/if}

View File

@ -13,7 +13,7 @@
</ul>
<div class="staticpage_navigation_center">
{foreach name="crumbs" from=$staticpage_navigation.crumbs item="crumb"}
{if !$smarty.foreach.crumbs.first}&raquo;{/if}<a href="{$crumb.link}">{$crumb.name|@escape}</a>
{if !$smarty.foreach.crumbs.first}&#187;{/if}<a href="{$crumb.link}">{$crumb.name|@escape}</a>
{/foreach}
</div>
{/if}