edit_sidemenu.scss 1004 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .edit-tab-with-sidemenu {
  2. display: flex;
  3. flex-direction: row;
  4. }
  5. .edit-tab-content {
  6. flex-grow: 1;
  7. min-width: 0;
  8. }
  9. //Deprecated class but maybe used by plugins (in panel settings)
  10. .edit-sidemenu-aside {
  11. margin-right: $spacer * 2;
  12. }
  13. //Deprecated class but maybe used by plugins (in panel settings)
  14. .edit-sidemenu {
  15. width: 100%;
  16. list-style: none;
  17. li.active {
  18. @include left-brand-border-gradient();
  19. }
  20. a {
  21. display: block;
  22. color: $text-color;
  23. margin: 0 0 1.5rem 1rem;
  24. white-space: nowrap;
  25. }
  26. }
  27. .column-styles-heading {
  28. border-bottom: 1px solid $gray-1;
  29. }
  30. @include media-breakpoint-down(sm) {
  31. .edit-tab-with-sidemenu {
  32. flex-direction: column;
  33. }
  34. //Deprecated class but maybe used by plugins (in panel settings)
  35. .edit-sidemenu-aside {
  36. width: 100%;
  37. margin-bottom: 2rem;
  38. }
  39. //Deprecated class but maybe used by plugins (in panel settings)
  40. .edit-sidemenu {
  41. li {
  42. float: left;
  43. }
  44. a {
  45. margin: 0.3rem 1rem;
  46. }
  47. }
  48. }