layout-rtl.css

@media all and (min-width: 480px) and (max-width: 959px) {
  body.sidebar-first #content,
  body.two-sidebars #content {
    float: left;
  }
  body.sidebar-second #content {
    float: right;
  }

  #sidebar-first {
    float: right;
  }

  #sidebar-second {
    float: left;
  }
  body.two-sidebars #sidebar-second {
    float: right;
    clear: right;
  }
  body.two-sidebars #sidebar-second .block {
    float: right;
  }
}

@media all and (min-width: 960px) {
  #content {
    float: right;
  }
  body.sidebar-first #content {
    left: 0;
    right: 20%;
  }
  body.two-sidebars #content {
    left: 0;
    right: 20%;
  }

  #sidebar-first {
    float: right;
    left: 0;
    right: -80%;
  }
  body.two-sidebars #sidebar-first {
    left: 0;
    right: -60%;
  }

  #sidebar-second {
    float: left;
  }
}

File

drupal/core/themes/stark/css/layout-rtl.css
View source
  1. @media all and (min-width: 480px) and (max-width: 959px) {
  2. body.sidebar-first #content,
  3. body.two-sidebars #content {
  4. float: left;
  5. }
  6. body.sidebar-second #content {
  7. float: right;
  8. }
  9. #sidebar-first {
  10. float: right;
  11. }
  12. #sidebar-second {
  13. float: left;
  14. }
  15. body.two-sidebars #sidebar-second {
  16. float: right;
  17. clear: right;
  18. }
  19. body.two-sidebars #sidebar-second .block {
  20. float: right;
  21. }
  22. }
  23. @media all and (min-width: 960px) {
  24. #content {
  25. float: right;
  26. }
  27. body.sidebar-first #content {
  28. left: 0;
  29. right: 20%;
  30. }
  31. body.two-sidebars #content {
  32. left: 0;
  33. right: 20%;
  34. }
  35. #sidebar-first {
  36. float: right;
  37. left: 0;
  38. right: -80%;
  39. }
  40. body.two-sidebars #sidebar-first {
  41. left: 0;
  42. right: -60%;
  43. }
  44. #sidebar-second {
  45. float: left;
  46. }
  47. }