Skip to content

Instantly share code, notes, and snippets.

@rodrigocnascimento
Created September 24, 2013 02:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rodrigocnascimento/6679740 to your computer and use it in GitHub Desktop.
Save rodrigocnascimento/6679740 to your computer and use it in GitHub Desktop.
cakephp pagination
.paging {
height: 36px;
margin: 18px 0;
}
.paging span{
float: left;
padding: 0 14px;
line-height: 34px;
border-right: 1px solid;
border-right-color: #DDD;
border-right-color: rgba(0, 0, 0, 0.15);
text-decoration: none;
border: 1px solid rgba(0, 0, 0, 0.15);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.paging span:hover, .paging span a:hover, .paging span.current {
background-color: #C7EEFE;
text-decoration:none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment