annotate static/css/pagination.css @ 629:f4c043cf55ac

Wiki integration. Requests don't always have sessions. In particular this occurs when a request is made without a trailing slash. The Common middleware redirects when this happens, and the middleware process_request() processing stops before a session can get added. So just set an attribute on the request object for each operation. This seemed weird to me at first, but there are plenty of examples of this in the Django code base already.
author Brian Neal <bgneal@gmail.com>
date Tue, 13 Nov 2012 13:50:06 -0600
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 }