commonrtl.scss 803 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*!
  2. * This file is part of the DITA Open Toolkit project.
  3. *
  4. * Copyright 2015 Jarno Elovirta
  5. *
  6. * See the accompanying LICENSE file for applicable license.
  7. */
  8. // Import common left-to-right rules first
  9. @import 'commonltr';
  10. // Overrides for right-to-left languages
  11. .linklist {
  12. margin-bottom: 1em;
  13. }
  14. ul.linklist {
  15. margin-top: 0;
  16. list-style-type: none;
  17. padding-right: 0;
  18. }
  19. .linklistwithchild {
  20. margin-right: 1.5em;
  21. margin-top: 1em;
  22. }
  23. .sublinklist {
  24. margin-right: 1.5em;
  25. margin-top: 1em;
  26. }
  27. dt.prereq {
  28. margin-right: 20px;
  29. }
  30. .cellrowborder {
  31. border-left: solid 1px;
  32. border-right: none;
  33. }
  34. .row-nocellborder {
  35. border-left: hidden;
  36. border-right: none;
  37. }
  38. .cell-norowborder {
  39. border-left: solid 1px;
  40. border-right: none;
  41. }
  42. .nocellnorowborder {
  43. border-left: hidden;
  44. }