-
Notifications
You must be signed in to change notification settings - Fork 9
/
jquery.fotorama-0.3.css
107 lines (101 loc) · 3.46 KB
/
jquery.fotorama-0.3.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
/* Made with sass. */
/* Please do not edit css-file directly, your changes will be erased. */
.fotorama__wrap {
position: relative;
overflow: hidden;
*zoom: 1;
cursor: pointer;
}
.fotorama__thumbs {
overflow: hidden;
*zoom: 1;
position: absolute;
width: 100%;
font-size: 0;
line-height: 0;
}
.fotorama__thumb {
display: -moz-inline-box;
-moz-box-orient: vertical;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=44)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=44);
opacity: 0.44;
cursor: pointer;
position: relative;
-moz-transition-property: all;
-webkit-transition-property: all;
-o-transition-property: all;
transition-property: all;
-moz-transition-duration: 0.15s;
-webkit-transition-duration: 0.15s;
-o-transition-duration: 0.15s;
transition-duration: 0.15s;
width: 10px;
height: 10px;
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dddddd), color-stop(100%, #bbbbbb));
background: -webkit-linear-gradient(#dddddd, #bbbbbb);
background: -moz-linear-gradient(#dddddd, #bbbbbb);
background: -o-linear-gradient(#dddddd, #bbbbbb);
background: linear-gradient(#dddddd, #bbbbbb);
background-color: #cccccc;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-o-border-radius: 10px;
-ms-border-radius: 10px;
-khtml-border-radius: 10px;
border-radius: 10px;
-moz-box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75);
-webkit-box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75);
-o-box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75);
box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75);
border: 1px solid white;
}
.fotorama__thumb {
*display: inline;
}
.fotorama__thumb:hover {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=66)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=66);
opacity: 0.66;
}
.fotorama__thumb_disabled {
visibility: hidden;
cursor: default;
}
.fotorama__thumb_selected {
-moz-box-shadow: inset 1px 1px 3px 0 rgba(0, 0, 0, 0.75);
-webkit-box-shadow: inset 1px 1px 3px 0 rgba(0, 0, 0, 0.75);
-o-box-shadow: inset 1px 1px 3px 0 rgba(0, 0, 0, 0.75);
box-shadow: inset 1px 1px 3px 0 rgba(0, 0, 0, 0.75);
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #e9e8e7));
background: -webkit-linear-gradient(#ffffff, #e9e8e7);
background: -moz-linear-gradient(#ffffff, #e9e8e7);
background: -o-linear-gradient(#ffffff, #e9e8e7);
background: linear-gradient(#ffffff, #e9e8e7);
background-color: #f4f3f3;
cursor: default;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=88)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=88);
opacity: 0.88;
}
.fotorama__wrap:hover .fotorama__thumb, .fotorama__wrap_no-hover .fotorama__thumb {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=55)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=55);
opacity: 0.55;
}
.fotorama__wrap:hover .fotorama__thumb:hover, .fotorama__wrap_no-hover .fotorama__thumb:hover {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=77)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=77);
opacity: 0.77;
}
.fotorama__wrap:hover .fotorama__thumb_selected, .fotorama__wrap_no-hover .fotorama__thumb_selected {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=99)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=99);
opacity: 0.99;
}
.fotorama__img {
position: absolute;
}