indented.css 204 B

12345678910111213141516
  1. /**
  2. * @file
  3. * Basic styling for comment module.
  4. */
  5. /**
  6. * Indent threaded comments.
  7. */
  8. .indented {
  9. margin-left: 25px; /* LTR */
  10. }
  11. [dir="rtl"] .indented {
  12. margin-left: 0;
  13. margin-right: 25px;
  14. }