toolbar.base-rtl.css

toolbar.base-rtl.css

File

drupal/core/modules/toolbar/css/toolbar.base-rtl.css
View source
  1. /**
  2. * @file toolbar.base-rtl.css
  3. */
  4. html.js .toolbar {
  5. left: auto;
  6. right: 0;
  7. }
  8. .js .toolbar .bar li {
  9. float: right;
  10. }
  11. /**
  12. * Administration menu.
  13. */
  14. .js .toolbar .bar {
  15. left: auto;
  16. right: 0;
  17. }
  18. @media only screen {
  19. .js .toolbar .bar li,
  20. .js .toolbar .tray li {
  21. float: none;
  22. }
  23. }
  24. @media only screen and (min-width: 16.5em) {
  25. .js .toolbar .bar li,
  26. .js .toolbar .horizontal li {
  27. float: right;
  28. }
  29. }
  30. /**
  31. * Toolbar tray.
  32. */
  33. .toolbar .vertical {
  34. left: auto;
  35. right: -100%;
  36. }
  37. .toolbar .horizontal {
  38. left: auto;
  39. right: 0;
  40. }
  41. .toolbar .vertical > .lining {
  42. left: auto;
  43. right: -100%;
  44. }
  45. .toolbar .vertical.active,
  46. .toolbar .vertical.active > .lining {
  47. left: auto;
  48. right: 0;
  49. }
  50. @media only screen and (min-width: 16.5em) {
  51. .toolbar .vertical.active > .lining:before {
  52. left: auto;
  53. right: -1px;
  54. }
  55. }
  56. /**
  57. * At larger screen sizes, the tray pushes the page content.
  58. */
  59. @media only screen and (min-width: 38.125em) {
  60. body.toolbar-tray-open.toolbar-vertical {
  61. margin-left: 0;
  62. margin-right: 240px;
  63. margin-right: 15rem;
  64. }
  65. }
  66. /**
  67. * ToolBar tray orientation toggle.
  68. */
  69. .toolbar .horizontal .toggle-orientation {
  70. left: 0;
  71. right: auto;
  72. }
  73. .toolbar .vertical .toggle-orientation {
  74. float: left;
  75. }