_sections.less 984 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // /**
  2. // * Copyright © Magento, Inc. All rights reserved.
  3. // * See COPYING.txt for license details.
  4. // */
  5. //
  6. // Common
  7. // _____________________________________________
  8. & when (@media-common = true) {
  9. .product.data.items {
  10. .lib-data-accordion();
  11. margin-bottom: @indent__base;
  12. }
  13. }
  14. //
  15. // Desktop
  16. // _____________________________________________
  17. .media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen__m) {
  18. .product.data.items {
  19. .lib-data-tabs();
  20. }
  21. }
  22. //
  23. // Mobile
  24. // _____________________________________________
  25. .media-width(@extremum, @break) when (@extremum = 'max') and (@break = @screen__m) {
  26. .product.data.items {
  27. .lib-data-accordion();
  28. .data.item {
  29. display: block;
  30. }
  31. .item.title {
  32. > .switch {
  33. padding: 1px 15px 1px;
  34. }
  35. }
  36. > .item.content {
  37. padding: 10px 15px 30px;
  38. }
  39. }
  40. }