Skip to content

Commit

Permalink
Merge branch 'dev' of git://github.com/infinitas/infinitas into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ceeram committed Jan 6, 2010
2 parents 706b550 + 9b3a70a commit a3f289b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 15 deletions.
17 changes: 4 additions & 13 deletions views/elements/pagination/navigation.ctp
Expand Up @@ -24,7 +24,6 @@
?>
<div class="wrap">
<div class="limit">
<span><?php echo __( 'Display', true ); ?> #</span>
<span><?php
$_paginationOptions = explode( ',', Configure::read( 'Global.pagination_select' ) );
$paginationLimmits = array_combine(
Expand Down Expand Up @@ -67,11 +66,7 @@
'class' => ''
),
null,
array(
'escape' => false,
'tag' => 'span',
'class' => ''
)
null
);
?>
</div>
Expand Down Expand Up @@ -107,19 +102,15 @@
<div class="button2-left">
<div class="next">
<?php
echo $paginator->prev(
echo $paginator->next(
__( 'Next', true ),
array(
'escape' => false,
'tag' => 'span',
'class' => ''
),
null,
array(
'escape' => false,
'tag' => 'span',
'class' => ''
)
null
);
?>
</div>
Expand All @@ -139,7 +130,7 @@
?>
</div>
</div>
<span>
<span class="pages">
<?php echo $this->Design->paginationCounter( $paginator ); ?>
</span>
</div>
Expand Down
8 changes: 6 additions & 2 deletions webroot/css/admin/pagination.css
Expand Up @@ -6,9 +6,13 @@
margin: 0 auto;
}

.pagination .wrap .pages{
margin-left: 5px;
}

.pagination a:hover {
text-decoration: none;
color: #0B55C4;
color: #FF6500;
}

.pagination a,
Expand Down Expand Up @@ -38,7 +42,7 @@
}

.pagination .limit .submit {
float:right;
float:left;
}

.pagination .limit select {
Expand Down

0 comments on commit a3f289b

Please sign in to comment.