You are here

responsive-menus--horizontal.css in AT Tools 8.3

/**
 * Basic Horizontal Menu
 * This will hide all sub-menus no matter what, it has the advantage over the
 * drop menu of not requiring a width on menu items or arrows.
 */
.ms-horizontal .rm-toggle {
  display: none;
}

.ms-horizontal .rm-block__content .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.ms-horizontal .rm-block__content .menu .menu__item {
  margin: 0 0 0 0;
  list-style: none;
}

[dir="rtl"] .ms-horizontal .rm-block__content .menu .menu__item {
  margin-right: 0;
  margin-left: 0;
}

.ms-horizontal .rm-block__content .menu .menu {
  display: none;
}

.ms-horizontal .rm-block__content .menu__item .menu__link:after {
  content: '';
  display: none;
}

.ms-horizontal .rm-block__content .menu__link {
  padding: 0.5rem 1.25rem;
}

.ms-horizontal .rm-block__content .menu__link:before, .ms-horizontal .rm-block__content .menu__link:after {
  content: "";
  float: none;
  width: 0;
  padding: 0;
}
/*# sourceMappingURL=responsive-menus--horizontal.css.map */

File

at_theme_generator/starterkits/starterkit/styles/css/components/responsive-menus--horizontal.css
View source
  1. /**
  2. * Basic Horizontal Menu
  3. * This will hide all sub-menus no matter what, it has the advantage over the
  4. * drop menu of not requiring a width on menu items or arrows.
  5. */
  6. .ms-horizontal .rm-toggle {
  7. display: none;
  8. }
  9. .ms-horizontal .rm-block__content .menu {
  10. display: -webkit-box;
  11. display: -ms-flexbox;
  12. display: flex;
  13. -webkit-box-orient: horizontal;
  14. -webkit-box-direction: normal;
  15. -ms-flex-direction: row;
  16. flex-direction: row;
  17. }
  18. .ms-horizontal .rm-block__content .menu .menu__item {
  19. margin: 0 0 0 0;
  20. list-style: none;
  21. }
  22. [dir="rtl"] .ms-horizontal .rm-block__content .menu .menu__item {
  23. margin-right: 0;
  24. margin-left: 0;
  25. }
  26. .ms-horizontal .rm-block__content .menu .menu {
  27. display: none;
  28. }
  29. .ms-horizontal .rm-block__content .menu__item .menu__link:after {
  30. content: '';
  31. display: none;
  32. }
  33. .ms-horizontal .rm-block__content .menu__link {
  34. padding: 0.5rem 1.25rem;
  35. }
  36. .ms-horizontal .rm-block__content .menu__link:before, .ms-horizontal .rm-block__content .menu__link:after {
  37. content: "";
  38. float: none;
  39. width: 0;
  40. padding: 0;
  41. }
  42. /*# sourceMappingURL=responsive-menus--horizontal.css.map */