_pages.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. .pages {
  10. .lib-pager();
  11. .action {
  12. @_shadow: inset 0 1px 0 0 @color-white, inset 0 -1px 0 0 fade(@border-color__base, 30);
  13. .lib-css(box-shadow, @_shadow);
  14. border-radius: 3px;
  15. padding: 0 8px;
  16. &.previous {
  17. margin-right: 8px;
  18. }
  19. &.next {
  20. margin-left: 8px;
  21. }
  22. }
  23. }
  24. }
  25. //
  26. // Mobile
  27. // _____________________________________________
  28. .media-width(@extremum, @break) when (@extremum = 'max') and (@break = @screen__s) {
  29. .pages {
  30. & &-items {
  31. display: block;
  32. padding: 2px 40px 0;
  33. position: relative;
  34. white-space: normal;
  35. z-index: 1;
  36. }
  37. &-item-previous {
  38. left: 0;
  39. position: absolute;
  40. top: 0;
  41. z-index: 1;
  42. }
  43. &-item-next {
  44. position: absolute;
  45. right: 0;
  46. top: 0;
  47. z-index: 1;
  48. }
  49. }
  50. }