_fullscreen.less 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. // /**
  2. // * Copyright © Magento, Inc. All rights reserved.
  3. // * See COPYING.txt for license details.
  4. // */
  5. .fotorama--fullscreen {
  6. background: @color-white;
  7. bottom: 0 !important;
  8. float: none !important;
  9. left: 0 !important;
  10. margin: 0 !important;
  11. position: fixed !important;
  12. right: 0 !important;
  13. top: 0 !important;
  14. width: 100% !important;
  15. z-index: @z-index-10 !important;
  16. &:extend(.fotorama-gpu);
  17. .fotorama__wrap {
  18. max-width: 100% !important;
  19. }
  20. }
  21. .fotorama__fullscreen {
  22. overflow: hidden;
  23. position: relative;
  24. .fotorama__zoom-in,
  25. .fotorama__zoom-out {
  26. cursor: pointer;
  27. display: block;
  28. height: @size-fotorama-block;
  29. overflow: hidden;
  30. position: absolute;
  31. width: @size-fotorama-block;
  32. }
  33. .fotorama__zoom-out {
  34. &:extend(.fotorama-sprite);
  35. background-position: 0 (-@size-fotorama-block) !important;
  36. top: 80px;
  37. &.fotorama__zoom-out--disabled {
  38. display: none;
  39. }
  40. }
  41. .fotorama__zoom-in {
  42. &:extend(.fotorama-sprite);
  43. background-position: 0 0 !important;
  44. top: 0;
  45. &.fotorama__zoom-in--disabled {
  46. display: none;
  47. }
  48. }
  49. .fotorama__video-close {
  50. display: none;
  51. }
  52. }
  53. .fotorama--fullscreen .fotorama__loaded--full {
  54. .fotorama__img {
  55. display: none;
  56. }
  57. .fotorama__img--full {
  58. display: block;
  59. }
  60. }