Ticket #1045 -- Added borders to all sides of the pagination anchor.

This commit is contained in:
Sarven Capadisli 2009-02-01 05:08:36 +00:00
parent 37a7692053
commit 59e42b766e
2 changed files with 11 additions and 13 deletions

View File

@ -1024,21 +1024,18 @@ display:block;
text-decoration:none;
font-weight:bold;
padding:7px;
border:1px dotted #D1D9E4;
border-bottom:0;
border-width:1px;
border-style:solid;
-moz-border-radius:7px;
-webkit-border-radius:7px;
border-radius:7px;
}
.pagination .nav_prev a {
-moz-border-radius-topright:7px;
-webkit-border-top-right-radius:7px;
padding-left:20px;
border-left:0;
padding-left:30px;
}
.pagination .nav_next a {
-moz-border-radius-topleft:7px;
-webkit-border-top-left-radius:7px;
padding-right:20px;
border-right:0;
padding-right:30px;
}
/* END: NOTICE */

View File

@ -65,7 +65,7 @@ color:#002E6E;
.notice,
.profile {
border-top-color:#D1D9E4;
border-top-color:#CEE1E9;
}
.section .notice,
.section .profile {
@ -274,12 +274,13 @@ background:transparent url(../images/icons/twotone/green/news.gif) no-repeat 0 4
.pagination .nav_prev a,
.pagination .nav_next a {
background-repeat:no-repeat;
border-color:#CEE1E9;
}
.pagination .nav_prev a {
background-image:url(../images/icons/twotone/green/arrow-left.gif);
background-position:0 45%;
background-position:10% 45%;
}
.pagination .nav_next a {
background-image:url(../images/icons/twotone/green/arrow-right.gif);
background-position:100% 45%;
background-position:90% 45%;
}