1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// /**
// * Copyright © Magento, Inc. All rights reserved.
// * See COPYING.txt for license details.
// */
.fotorama-stretch {
bottom: 0;
height: 100%;
left: 0;
position: absolute;
right: 0;
top: 0;
width: 100%;
}
.fotorama-grab-cursor {
cursor: move;
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: -o-grab;
cursor: -ms-grab;
cursor: grab;
}
.fotorama-grabbing-cursor {
cursor: move;
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
cursor: -o-grabbing;
cursor: -ms-grabbing;
cursor: grabbing;
}
.fotorama-gpu {
transform: translateZ(0);
}
.fotorama-focus {
outline: 0;
}
.fotorama-focus-overlay {
&:after {
&:extend(.fotorama-stretch);
background-color: @theme__color__primary-alt;
border-radius: inherit;
content: '';
}
}
.fotorama-transform-disabled {
transform: none !important;
}
.fotorama-transition-for-slide {
transition-duration: 0ms;
transition-property: transform, width;
transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
}
.fotorama-no-select {
user-select: none;
}
.fotorama-select {
user-select: text;
}
.fotorama-empty-bg {
background: url(data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=);
}
.fotorama-auto-margin {
margin: auto;
padding: 0;
}
.fotorama-inline-block {
.fotorama-inline-block();
}
.fotorama-content-box {
box-sizing: content-box;
}
.fotorama-border-box {
box-sizing: border-box;
}
.fotorama-hidden {
left: -99999px;
position: absolute;
top: -99999px;
z-index: -@z-index-10;
}
.fotorama-visible {
left: auto;
opacity: 1;
position: relative;
top: auto;
z-index: auto;
}
.fotorama-no-tap {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.transitionDuration {
transition-duration: 333ms;
}
.transitionDurationZero {
transition-duration: 0ms;
}
.fotorama-sprite {
&:extend(.fotorama-print-background);
background-image: url('gallery.png');
background-repeat: no-repeat;
}
.fotorama-print-background {
@media print {
background: none !important;
}
}