annotate media/css/comments.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 82deb8cc59e9
children
rev   line source
bgneal@154 1 div.comment-list {
bgneal@154 2 float: left;
gremmie@1 3 font-size: 18px;
gremmie@1 4 font-weight: bold;
gremmie@1 5 color: #999;
bgneal@154 6 padding-right: .5em;
gremmie@1 7 }
gremmie@1 8 div.comment {
gremmie@1 9 padding: 0.5em;
gremmie@1 10 border-bottom: 1px dashed black;
gremmie@1 11 font: 12px/18px "Lucida Grande", Verdana, sans-serif;
gremmie@1 12 color: #333;
gremmie@1 13 }
gremmie@1 14 div.comment-avatar {
gremmie@1 15 float: left;
gremmie@1 16 padding-right: 1.5em;
gremmie@1 17 }
gremmie@1 18 div.comment-text {
gremmie@1 19 }
gremmie@1 20 div.comment-text-removed {
gremmie@1 21 font-style: italic;
gremmie@1 22 }
gremmie@1 23 div.comment-details {
gremmie@1 24 clear: both;
gremmie@1 25 font-size: smaller;
gremmie@1 26 font-style: italic;
gremmie@1 27 padding-top: 0.5em;
gremmie@1 28 }