Mercurial > public > sg101
annotate media/css/shoutbox.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 | f408971657b9 |
children | 4557974db0e0 |
rev | line source |
---|---|
gremmie@1 | 1 span.shoutbox-user { |
gremmie@1 | 2 font-weight: bold; |
gremmie@1 | 3 text-decoration: underline; |
gremmie@1 | 4 } |
gremmie@1 | 5 span.shoutbox-shout { |
gremmie@1 | 6 } |
gremmie@1 | 7 span.shoutbox-date { |
gremmie@1 | 8 font-style: italic; |
gremmie@1 | 9 } |
gremmie@1 | 10 |
gremmie@1 | 11 div#shoutbox-smiley-frame { |
gremmie@1 | 12 margin: 0.5em 2px; |
gremmie@1 | 13 } |
gremmie@1 | 14 |
gremmie@1 | 15 div#shoutbox-smiley-frame img { |
gremmie@1 | 16 padding: 1px 1px; |
gremmie@1 | 17 } |
gremmie@1 | 18 |
gremmie@1 | 19 div.smiley_farm img { |
gremmie@1 | 20 border: 0; |
gremmie@1 | 21 cursor: pointer; |
gremmie@1 | 22 } |
gremmie@1 | 23 |
bgneal@12 | 24 #shoutbox-shout-container { |
gremmie@1 | 25 position: relative; |
gremmie@1 | 26 width: 142; /*marquee width */ |
gremmie@1 | 27 height: 200px; /*marquee height */ |
gremmie@1 | 28 background-color: #bdd6d6; |
gremmie@1 | 29 overflow: hidden; |
gremmie@1 | 30 overflow: auto; |
gremmie@1 | 31 border: 1px solid teal; |
gremmie@1 | 32 padding: 2px; |
gremmie@1 | 33 padding-left: 4px; |
gremmie@1 | 34 margin-bottom: 2px; |
gremmie@1 | 35 } |
gremmie@1 | 36 |