-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
mag.css
107 lines (91 loc) · 1.58 KB
/
mag.css
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
.mag-host {
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
.mag-zoomed-container {
position: absolute;
/*position: relative;*/
height: 100%;
width: 100%;
left: 0;
top: 0;
overflow: hidden;
}
.mag-zoomed-container > * {
position: absolute;
}
.mag-noflow {
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
z-index: 2;
overflow: hidden;
}
.mag-noflow > * {
position: absolute;
}
.mag-zoomed {
/* under .mag-noflow > * */
/*position: absolute;*/
}
.mag-zoomed img {
display: block;
width: 100%;
height: 100%;
}
.mag-zone {
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
z-index: 2;
}
.mag-thumb {
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
}
[mag-thumb], [data-mag-thumb] {
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
}
[mag-thumb] img, [data-mag-thumb] img {
display: block;
width: 100%;
height: 100%;
}
.mag-lens {
position: absolute;
z-index: 2;
}
[mag-zoom],
[data-mag-zoom] {
display: none;
}
.mag-js [mag-zoom][mag-toggle="false"],
.mag-js [data-mag-zoom][data-mag-toggle="false"] {
display: block;
}
[mag-flow="inline"],
[data-mag-flow="inline"] {
display: inline-block;
position: relative;
width: auto;
height: auto;
}
[mag-flow="inline"] .mag-thumb,
[data-mag-flow="inline"] .mag-thumb {
position: relative;
}