forum.css

Styling for the Forum module.

File

drupal/modules/forum/forum.css
View source
  1. /**
  2. * @file
  3. * Styling for the Forum module.
  4. */
  5. #forum .description {
  6. font-size: 0.9em;
  7. margin: 0.5em;
  8. }
  9. #forum td.created,
  10. #forum td.posts,
  11. #forum td.topics,
  12. #forum td.last-reply,
  13. #forum td.replies,
  14. #forum td.pager {
  15. white-space: nowrap;
  16. }
  17. #forum td.forum .icon {
  18. background-image: url(../../misc/forum-icons.png);
  19. background-repeat: no-repeat;
  20. float: left; /* LTR */
  21. height: 24px;
  22. margin: 0 9px 0 0; /* LTR */
  23. width: 24px;
  24. }
  25. #forum td.forum .forum-status-new {
  26. background-position: -24px 0;
  27. }
  28. #forum div.indent {
  29. margin-left: 20px; /* LTR */
  30. }
  31. #forum .icon div {
  32. background-image: url(../../misc/forum-icons.png);
  33. background-repeat: no-repeat;
  34. width: 24px;
  35. height: 24px;
  36. }
  37. #forum .icon .topic-status-new {
  38. background-position: -24px 0;
  39. }
  40. #forum .icon .topic-status-hot {
  41. background-position: -48px 0;
  42. }
  43. #forum .icon .topic-status-hot-new {
  44. background-position: -72px 0;
  45. }
  46. #forum .icon .topic-status-sticky {
  47. background-position: -96px 0;
  48. }
  49. #forum .icon .topic-status-closed {
  50. background-position: -120px 0;
  51. }