Mercurial > public > sg101
annotate media/css/shoutbox_app.css @ 235:d302c498560e
Fix problem when deleting multiple topics from a forum in bulk. We getting a list of topics from the database, then deleting each topic. But after you delete a topic, the forum.last_post on the remaining non-deleted topics can be stale. This was causing a weird DoesNotExist. Now just get the topics one at a time from the database.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 26 Aug 2010 04:01:58 +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 } |