forum.css 869 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /**
  2. * @file
  3. * Styling for the Forum module.
  4. */
  5. .forum__description {
  6. margin: 0.5em;
  7. font-size: 0.9em;
  8. }
  9. .forum__icon {
  10. float: left; /* LTR */
  11. width: 24px;
  12. height: 24px;
  13. margin: 0 9px 0 0; /* LTR */
  14. background-image: url(../../../images/classy/icons/forum-icons.png);
  15. background-repeat: no-repeat;
  16. }
  17. [dir="rtl"] .forum__icon {
  18. float: right;
  19. margin: 0 0 0 9px;
  20. }
  21. .forum__title {
  22. overflow: hidden;
  23. }
  24. .forum .indented {
  25. margin-left: 20px; /* LTR */
  26. }
  27. [dir="rtl"] .forum .indented {
  28. margin-right: 20px;
  29. margin-left: 0;
  30. }
  31. .forum__topic-status--new {
  32. background-position: -24px 0;
  33. }
  34. .forum__topic-status--hot {
  35. background-position: -48px 0;
  36. }
  37. .forum__topic-status--hot-new {
  38. background-position: -72px 0;
  39. }
  40. .forum__topic-status--sticky {
  41. background-position: -96px 0;
  42. }
  43. .forum__topic-status--closed {
  44. background-position: -120px 0;
  45. }