forum.css

  1. 7.x drupal-7.x/modules/forum/forum.css
  2. 6.x drupal-6.x/modules/forum/forum.css
#forum .description {
  font-size: 0.9em;
  margin: 0.5em;
}
#forum td.created, #forum td.posts, #forum td.topics, #forum td.last-reply, #forum td.replies, #forum td.pager {
  white-space: nowrap;
}
#forum td.posts, #forum td.topics, #forum td.replies, #forum td.pager {
  text-align: center;
}
#forum tr td.forum {
  padding-left: 25px; /* LTR */
  background-position: 2px 2px; /* LTR */
  background-image: url(../../misc/forum-default.png);
  background-repeat: no-repeat;
}
#forum tr.new-topics td.forum {
  background-image: url(../../misc/forum-new.png);
}
#forum div.indent {
  margin-left: 20px;
}

.forum-topic-navigation {
  padding: 1em 0 0 3em; /* LTR */
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
  text-align: center;
  padding: 0.5em;
}
.forum-topic-navigation .topic-previous {
  text-align: right; /* LTR */
  float: left; /* LTR */
  width: 46%;
}
.forum-topic-navigation .topic-next {
  text-align: left; /* LTR */
  float: right; /* LTR */
  width: 46%;
}

File

drupal-6.x/modules/forum/forum.css
View source
  1. #forum .description {
  2. font-size: 0.9em;
  3. margin: 0.5em;
  4. }
  5. #forum td.created, #forum td.posts, #forum td.topics, #forum td.last-reply, #forum td.replies, #forum td.pager {
  6. white-space: nowrap;
  7. }
  8. #forum td.posts, #forum td.topics, #forum td.replies, #forum td.pager {
  9. text-align: center;
  10. }
  11. #forum tr td.forum {
  12. padding-left: 25px; /* LTR */
  13. background-position: 2px 2px; /* LTR */
  14. background-image: url(../../misc/forum-default.png);
  15. background-repeat: no-repeat;
  16. }
  17. #forum tr.new-topics td.forum {
  18. background-image: url(../../misc/forum-new.png);
  19. }
  20. #forum div.indent {
  21. margin-left: 20px;
  22. }
  23. .forum-topic-navigation {
  24. padding: 1em 0 0 3em; /* LTR */
  25. border-top: 1px solid #888;
  26. border-bottom: 1px solid #888;
  27. text-align: center;
  28. padding: 0.5em;
  29. }
  30. .forum-topic-navigation .topic-previous {
  31. text-align: right; /* LTR */
  32. float: left; /* LTR */
  33. width: 46%;
  34. }
  35. .forum-topic-navigation .topic-next {
  36. text-align: left; /* LTR */
  37. float: right; /* LTR */
  38. width: 46%;
  39. }