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:
parent
2e450546c4
commit
ccdbcfce96
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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} »</a></span>
|
||||
<span class="continue_reading"><a href="{$entry.link}#extended" title='{$CONST.VIEW_EXTENDED_ENTRY|@sprintf:$shorttitle}'>{$CONST.VIEW_EXTENDED_ENTRY|@sprintf:$shorttitle} »</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}">« {$CONST.PREVIOUS_PAGE}</a>  
|
||||
<a title="{$CONST.PREVIOUS_PAGE}" href="{$footer_prev_page}">« {$CONST.PREVIOUS_PAGE}</a>  
|
||||
{/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} »</a>
|
||||
<a title="{$CONST.NEXT_PAGE}" href="{$footer_next_page}">{$CONST.NEXT_PAGE} »</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]>«<![endif]--><!--[if gt IE 6]><!-->◄<!--<![endif]--></a>
|
||||
<a title="{$CONST.PREVIOUS_PAGE}" href="{$footer_prev_page}"><span class="pagearrow">◄</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]>»<![endif]--><!--[if gt IE 6]><!-->►<!--<![endif]--></a>
|
||||
<a title="{$CONST.NEXT_PAGE}" href="{$footer_next_page}"><span class="pagearrow">►</span></a>
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
|
@ -13,7 +13,7 @@
|
||||
</ul>
|
||||
<div class="staticpage_navigation_center">
|
||||
{foreach name="crumbs" from=$staticpage_navigation.crumbs item="crumb"}
|
||||
{if !$smarty.foreach.crumbs.first}»{/if}<a href="{$crumb.link}">{$crumb.name|@escape}</a>
|
||||
{if !$smarty.foreach.crumbs.first}»{/if}<a href="{$crumb.link}">{$crumb.name|@escape}</a>
|
||||
{/foreach}
|
||||
</div>
|
||||
{/if}
|
||||
|
Loading…
x
Reference in New Issue
Block a user