annotate static/css/pagination.css @ 445:e9f203c5f5bb

Attempting to fix #218; update the topic last visit time with 'now' when viewing the last page of a topic, otherwise use the creation time of the last post on the page.
author Brian Neal <bgneal@gmail.com>
date Wed, 08 Jun 2011 00:24:41 +0000
parents 88b2b9cb8c1f
children
rev   line source
bgneal@312 1 div.pagination {
bgneal@312 2 padding: 3px;
bgneal@312 3 }
bgneal@312 4 div.pagination ul {
bgneal@312 5 list-style-type: none;
bgneal@312 6 }
bgneal@312 7 div.pagination li {
bgneal@312 8 float: left;
bgneal@312 9 display: inline;
bgneal@312 10 margin: 0 5px 0 0;
bgneal@312 11 display: block;
bgneal@312 12 }
bgneal@312 13 div.pagination li a {
bgneal@312 14 color: #333;
bgneal@312 15 padding: 4px;
bgneal@312 16 border: 1px solid #333;
bgneal@312 17 text-decoration: none;
bgneal@312 18 float: left;
bgneal@312 19 }
bgneal@312 20 div.pagination li a:hover {
bgneal@312 21 color: #333;
bgneal@312 22 background: #57FEFF;
bgneal@312 23 border: 1px solid #333;
bgneal@312 24 }
bgneal@312 25 div.pagination li.current {
bgneal@312 26 color: #fff;
bgneal@312 27 border: 1px solid #333;
bgneal@312 28 padding: 4px;
bgneal@312 29 background: teal;
bgneal@312 30 }