annotate media/css/shoutbox_app.css @ 197:2baadae33f2e

Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author Brian Neal <bgneal@gmail.com>
date Sat, 10 Apr 2010 04:32:24 +0000
parents 4f07047e0a40
children
rev   line source
gremmie@1 1 div.shoutbox-history table {
gremmie@1 2 border-collapse: collapse;
gremmie@1 3 width: 95%;
gremmie@1 4 margin: 1em auto 1em auto;
gremmie@1 5 border: 1px solid black;
gremmie@1 6 }
bgneal@163 7 div.shoutbox-history th {
bgneal@163 8 border: 1px solid black;
gremmie@1 9 padding: 5px 2px;
gremmie@1 10 text-align: center;
gremmie@1 11 width: 10%;
gremmie@1 12 }
bgneal@163 13 div.shoutbox-history td {
bgneal@163 14 border: 1px solid black;
gremmie@1 15 padding: 5px 5px;
gremmie@1 16 width: 90%;
gremmie@1 17 }
bgneal@163 18 div.shoutbox-history tr.odd {
gremmie@1 19 background-color: #ddd;
gremmie@1 20 }
gremmie@1 21 div.shoutbox-history .date {
gremmie@1 22 font-style: italic;
gremmie@1 23 }
gremmie@1 24
gremmie@1 25 div.shoutbox-history .edit {
gremmie@1 26 padding: 5px 5px;
gremmie@1 27 }
gremmie@1 28
gremmie@1 29 div.shoutbox-history .edit:hover {
gremmie@1 30 background-color: #7fffd4;
gremmie@1 31 cursor: pointer;
gremmie@1 32 }