prettyphoto 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/vendor/assets/images/prettyPhoto/dark_rounded/btnNext.png +0 -0
- data/vendor/assets/images/prettyPhoto/dark_rounded/btnPrevious.png +0 -0
- data/vendor/assets/images/prettyPhoto/dark_rounded/contentPattern.png +0 -0
- data/vendor/assets/images/prettyPhoto/dark_rounded/default_thumbnail.gif +0 -0
- data/vendor/assets/images/prettyPhoto/dark_rounded/loader.gif +0 -0
- data/vendor/assets/images/prettyPhoto/dark_rounded/sprite.png +0 -0
- data/vendor/assets/images/prettyPhoto/dark_square/btnNext.png +0 -0
- data/vendor/assets/images/prettyPhoto/dark_square/btnPrevious.png +0 -0
- data/vendor/assets/images/prettyPhoto/dark_square/contentPattern.png +0 -0
- data/vendor/assets/images/prettyPhoto/dark_square/default_thumbnail.gif +0 -0
- data/vendor/assets/images/prettyPhoto/dark_square/loader.gif +0 -0
- data/vendor/assets/images/prettyPhoto/dark_square/sprite.png +0 -0
- data/vendor/assets/images/prettyPhoto/default/default_thumb.png +0 -0
- data/vendor/assets/images/prettyPhoto/default/loader.gif +0 -0
- data/vendor/assets/images/prettyPhoto/default/sprite.png +0 -0
- data/vendor/assets/images/prettyPhoto/default/sprite_next.png +0 -0
- data/vendor/assets/images/prettyPhoto/default/sprite_prev.png +0 -0
- data/vendor/assets/images/prettyPhoto/default/sprite_x.png +0 -0
- data/vendor/assets/images/prettyPhoto/default/sprite_y.png +0 -0
- data/vendor/assets/images/prettyPhoto/facebook/btnNext.png +0 -0
- data/vendor/assets/images/prettyPhoto/facebook/btnPrevious.png +0 -0
- data/vendor/assets/images/prettyPhoto/facebook/contentPatternBottom.png +0 -0
- data/vendor/assets/images/prettyPhoto/facebook/contentPatternLeft.png +0 -0
- data/vendor/assets/images/prettyPhoto/facebook/contentPatternRight.png +0 -0
- data/vendor/assets/images/prettyPhoto/facebook/contentPatternTop.png +0 -0
- data/vendor/assets/images/prettyPhoto/facebook/default_thumbnail.gif +0 -0
- data/vendor/assets/images/prettyPhoto/facebook/loader.gif +0 -0
- data/vendor/assets/images/prettyPhoto/facebook/sprite.png +0 -0
- data/vendor/assets/images/prettyPhoto/light_rounded/btnNext.png +0 -0
- data/vendor/assets/images/prettyPhoto/light_rounded/btnPrevious.png +0 -0
- data/vendor/assets/images/prettyPhoto/light_rounded/default_thumbnail.gif +0 -0
- data/vendor/assets/images/prettyPhoto/light_rounded/loader.gif +0 -0
- data/vendor/assets/images/prettyPhoto/light_rounded/sprite.png +0 -0
- data/vendor/assets/images/prettyPhoto/light_square/btnNext.png +0 -0
- data/vendor/assets/images/prettyPhoto/light_square/btnPrevious.png +0 -0
- data/vendor/assets/images/prettyPhoto/light_square/default_thumbnail.gif +0 -0
- data/vendor/assets/images/prettyPhoto/light_square/loader.gif +0 -0
- data/vendor/assets/images/prettyPhoto/light_square/sprite.png +0 -0
- data/vendor/assets/javascripts/prettyphoto-dev.js +911 -0
- data/vendor/assets/javascripts/prettyphoto.js +7 -0
- data/vendor/assets/stylesheets/prettyphoto.sass +663 -0
- metadata +42 -1
@@ -0,0 +1,663 @@
|
|
1
|
+
div
|
2
|
+
&.pp_default
|
3
|
+
.pp_top
|
4
|
+
height: 13px
|
5
|
+
.pp_middle, .pp_left, .pp_right
|
6
|
+
height: 13px
|
7
|
+
.pp_bottom
|
8
|
+
height: 13px
|
9
|
+
.pp_left, .pp_middle, .pp_right
|
10
|
+
height: 13px
|
11
|
+
.pp_top
|
12
|
+
.pp_left
|
13
|
+
background: image-url("prettyPhoto/default/sprite.png") -78px -93px no-repeat
|
14
|
+
.pp_middle
|
15
|
+
background: image-url("prettyPhoto/default/sprite_x.png") top left repeat-x
|
16
|
+
.pp_right
|
17
|
+
background: image-url("prettyPhoto/default/sprite.png") -112px -93px no-repeat
|
18
|
+
.pp_content .ppt
|
19
|
+
color: #f8f8f8
|
20
|
+
.pp_content_container
|
21
|
+
.pp_left
|
22
|
+
background: image-url("prettyPhoto/default/sprite_y.png") -7px 0 repeat-y
|
23
|
+
padding-left: 13px
|
24
|
+
.pp_right
|
25
|
+
background: image-url("prettyPhoto/default/sprite_y.png") top right repeat-y
|
26
|
+
padding-right: 13px
|
27
|
+
.pp_next:hover
|
28
|
+
background: image-url("prettyPhoto/default/sprite_next.png") center right no-repeat
|
29
|
+
cursor: pointer
|
30
|
+
.pp_previous:hover
|
31
|
+
background: image-url("prettyPhoto/default/sprite_prev.png") center left no-repeat
|
32
|
+
cursor: pointer
|
33
|
+
.pp_expand
|
34
|
+
background: image-url("prettyPhoto/default/sprite.png") 0 -29px no-repeat
|
35
|
+
cursor: pointer
|
36
|
+
width: 28px
|
37
|
+
height: 28px
|
38
|
+
&:hover
|
39
|
+
background: image-url("prettyPhoto/default/sprite.png") 0 -56px no-repeat
|
40
|
+
cursor: pointer
|
41
|
+
.pp_contract
|
42
|
+
background: image-url("prettyPhoto/default/sprite.png") 0 -84px no-repeat
|
43
|
+
cursor: pointer
|
44
|
+
width: 28px
|
45
|
+
height: 28px
|
46
|
+
&:hover
|
47
|
+
background: image-url("prettyPhoto/default/sprite.png") 0 -113px no-repeat
|
48
|
+
cursor: pointer
|
49
|
+
.pp_close
|
50
|
+
width: 30px
|
51
|
+
height: 30px
|
52
|
+
background: image-url("prettyPhoto/default/sprite.png") 2px 1px no-repeat
|
53
|
+
cursor: pointer
|
54
|
+
.pp_gallery ul li a
|
55
|
+
background: image-url("prettyPhoto/default/default_thumb.png") center center #f8f8f8
|
56
|
+
border: 1px solid #aaa
|
57
|
+
.pp_social
|
58
|
+
margin-top: 7px
|
59
|
+
.pp_gallery a
|
60
|
+
&.pp_arrow_previous, &.pp_arrow_next
|
61
|
+
position: static
|
62
|
+
left: auto
|
63
|
+
.pp_nav
|
64
|
+
.pp_play
|
65
|
+
background: image-url("prettyPhoto/default/sprite.png") -51px 1px no-repeat
|
66
|
+
height: 30px
|
67
|
+
width: 30px
|
68
|
+
.pp_pause
|
69
|
+
background: image-url("prettyPhoto/default/sprite.png") -51px 1px no-repeat
|
70
|
+
height: 30px
|
71
|
+
width: 30px
|
72
|
+
background-position: -51px -29px
|
73
|
+
a
|
74
|
+
&.pp_arrow_previous
|
75
|
+
background: image-url("prettyPhoto/default/sprite.png") -31px -3px no-repeat
|
76
|
+
height: 20px
|
77
|
+
width: 20px
|
78
|
+
margin: 4px 0 0
|
79
|
+
&.pp_arrow_next
|
80
|
+
background: image-url("prettyPhoto/default/sprite.png") -31px -3px no-repeat
|
81
|
+
height: 20px
|
82
|
+
width: 20px
|
83
|
+
margin: 4px 0 0
|
84
|
+
left: 52px
|
85
|
+
background-position: -82px -3px
|
86
|
+
.pp_content_container .pp_details
|
87
|
+
margin-top: 5px
|
88
|
+
.pp_nav
|
89
|
+
clear: none
|
90
|
+
height: 30px
|
91
|
+
width: 110px
|
92
|
+
position: relative
|
93
|
+
.currentTextHolder
|
94
|
+
font-family: Georgia
|
95
|
+
font-style: italic
|
96
|
+
color: #999
|
97
|
+
font-size: 11px
|
98
|
+
left: 75px
|
99
|
+
line-height: 25px
|
100
|
+
position: absolute
|
101
|
+
top: 2px
|
102
|
+
margin: 0
|
103
|
+
padding: 0 0 0 10px
|
104
|
+
.pp_close:hover
|
105
|
+
opacity: 0.7
|
106
|
+
.pp_nav
|
107
|
+
.pp_play:hover, .pp_pause:hover
|
108
|
+
opacity: 0.7
|
109
|
+
.pp_arrow_next:hover, .pp_arrow_previous:hover
|
110
|
+
opacity: 0.7
|
111
|
+
.pp_description
|
112
|
+
font-size: 11px
|
113
|
+
font-weight: 700
|
114
|
+
line-height: 14px
|
115
|
+
margin: 5px 50px 5px 0
|
116
|
+
.pp_bottom
|
117
|
+
.pp_left
|
118
|
+
background: image-url("prettyPhoto/default/sprite.png") -78px -127px no-repeat
|
119
|
+
.pp_middle
|
120
|
+
background: image-url("prettyPhoto/default/sprite_x.png") bottom left repeat-x
|
121
|
+
.pp_right
|
122
|
+
background: image-url("prettyPhoto/default/sprite.png") -112px -127px no-repeat
|
123
|
+
.pp_loaderIcon
|
124
|
+
background: image-url("prettyPhoto/default/loader.gif") center center no-repeat
|
125
|
+
&.light_rounded
|
126
|
+
.pp_top
|
127
|
+
.pp_left
|
128
|
+
background: image-url("prettyPhoto/light_rounded/sprite.png") -88px -53px no-repeat
|
129
|
+
.pp_right
|
130
|
+
background: image-url("prettyPhoto/light_rounded/sprite.png") -110px -53px no-repeat
|
131
|
+
.pp_next:hover
|
132
|
+
background: image-url("prettyPhoto/light_rounded/btnNext.png") center right no-repeat
|
133
|
+
cursor: pointer
|
134
|
+
.pp_previous:hover
|
135
|
+
background: image-url("prettyPhoto/light_rounded/btnPrevious.png") center left no-repeat
|
136
|
+
cursor: pointer
|
137
|
+
.pp_expand
|
138
|
+
background: image-url("prettyPhoto/light_rounded/sprite.png") -31px -26px no-repeat
|
139
|
+
cursor: pointer
|
140
|
+
&:hover
|
141
|
+
background: image-url("prettyPhoto/light_rounded/sprite.png") -31px -47px no-repeat
|
142
|
+
cursor: pointer
|
143
|
+
.pp_contract
|
144
|
+
background: image-url("prettyPhoto/light_rounded/sprite.png") 0 -26px no-repeat
|
145
|
+
cursor: pointer
|
146
|
+
&:hover
|
147
|
+
background: image-url("prettyPhoto/light_rounded/sprite.png") 0 -47px no-repeat
|
148
|
+
cursor: pointer
|
149
|
+
.pp_close
|
150
|
+
width: 75px
|
151
|
+
height: 22px
|
152
|
+
background: image-url("prettyPhoto/light_rounded/sprite.png") -1px -1px no-repeat
|
153
|
+
cursor: pointer
|
154
|
+
.pp_nav
|
155
|
+
.pp_play
|
156
|
+
background: image-url("prettyPhoto/light_rounded/sprite.png") -1px -100px no-repeat
|
157
|
+
height: 15px
|
158
|
+
width: 14px
|
159
|
+
.pp_pause
|
160
|
+
background: image-url("prettyPhoto/light_rounded/sprite.png") -24px -100px no-repeat
|
161
|
+
height: 15px
|
162
|
+
width: 14px
|
163
|
+
.pp_arrow_previous
|
164
|
+
background: image-url("prettyPhoto/light_rounded/sprite.png") 0 -71px no-repeat
|
165
|
+
.pp_arrow_next
|
166
|
+
background: image-url("prettyPhoto/light_rounded/sprite.png") -22px -71px no-repeat
|
167
|
+
.pp_bottom
|
168
|
+
.pp_left
|
169
|
+
background: image-url("prettyPhoto/light_rounded/sprite.png") -88px -80px no-repeat
|
170
|
+
.pp_right
|
171
|
+
background: image-url("prettyPhoto/light_rounded/sprite.png") -110px -80px no-repeat
|
172
|
+
&.dark_rounded
|
173
|
+
.pp_top
|
174
|
+
.pp_left
|
175
|
+
background: image-url("prettyPhoto/dark_rounded/sprite.png") -88px -53px no-repeat
|
176
|
+
.pp_right
|
177
|
+
background: image-url("prettyPhoto/dark_rounded/sprite.png") -110px -53px no-repeat
|
178
|
+
.pp_content_container
|
179
|
+
.pp_left
|
180
|
+
background: image-url("prettyPhoto/dark_rounded/contentPattern.png") top left repeat-y
|
181
|
+
.pp_right
|
182
|
+
background: image-url("prettyPhoto/dark_rounded/contentPattern.png") top right repeat-y
|
183
|
+
.pp_next:hover
|
184
|
+
background: image-url("prettyPhoto/dark_rounded/btnNext.png") center right no-repeat
|
185
|
+
cursor: pointer
|
186
|
+
.pp_previous:hover
|
187
|
+
background: image-url("prettyPhoto/dark_rounded/btnPrevious.png") center left no-repeat
|
188
|
+
cursor: pointer
|
189
|
+
.pp_expand
|
190
|
+
background: image-url("prettyPhoto/dark_rounded/sprite.png") -31px -26px no-repeat
|
191
|
+
cursor: pointer
|
192
|
+
&:hover
|
193
|
+
background: image-url("prettyPhoto/dark_rounded/sprite.png") -31px -47px no-repeat
|
194
|
+
cursor: pointer
|
195
|
+
.pp_contract
|
196
|
+
background: image-url("prettyPhoto/dark_rounded/sprite.png") 0 -26px no-repeat
|
197
|
+
cursor: pointer
|
198
|
+
&:hover
|
199
|
+
background: image-url("prettyPhoto/dark_rounded/sprite.png") 0 -47px no-repeat
|
200
|
+
cursor: pointer
|
201
|
+
.pp_close
|
202
|
+
width: 75px
|
203
|
+
height: 22px
|
204
|
+
background: image-url("prettyPhoto/dark_rounded/sprite.png") -1px -1px no-repeat
|
205
|
+
cursor: pointer
|
206
|
+
.pp_description
|
207
|
+
margin-right: 85px
|
208
|
+
color: #fff
|
209
|
+
.pp_nav
|
210
|
+
.pp_play
|
211
|
+
background: image-url("prettyPhoto/dark_rounded/sprite.png") -1px -100px no-repeat
|
212
|
+
height: 15px
|
213
|
+
width: 14px
|
214
|
+
.pp_pause
|
215
|
+
background: image-url("prettyPhoto/dark_rounded/sprite.png") -24px -100px no-repeat
|
216
|
+
height: 15px
|
217
|
+
width: 14px
|
218
|
+
.pp_arrow_previous
|
219
|
+
background: image-url("prettyPhoto/dark_rounded/sprite.png") 0 -71px no-repeat
|
220
|
+
.pp_arrow_next
|
221
|
+
background: image-url("prettyPhoto/dark_rounded/sprite.png") -22px -71px no-repeat
|
222
|
+
.pp_bottom
|
223
|
+
.pp_left
|
224
|
+
background: image-url("prettyPhoto/dark_rounded/sprite.png") -88px -80px no-repeat
|
225
|
+
.pp_right
|
226
|
+
background: image-url("prettyPhoto/dark_rounded/sprite.png") -110px -80px no-repeat
|
227
|
+
.pp_loaderIcon
|
228
|
+
background: image-url("prettyPhoto/dark_rounded/loader.gif") center center no-repeat
|
229
|
+
&.dark_square
|
230
|
+
.pp_left, .pp_middle, .pp_right, .pp_content
|
231
|
+
background: #000
|
232
|
+
.pp_description
|
233
|
+
color: #fff
|
234
|
+
margin: 0 85px 0 0
|
235
|
+
.pp_loaderIcon
|
236
|
+
background: image-url("prettyPhoto/dark_square/loader.gif") center center no-repeat
|
237
|
+
.pp_expand
|
238
|
+
background: image-url("prettyPhoto/dark_square/sprite.png") -31px -26px no-repeat
|
239
|
+
cursor: pointer
|
240
|
+
&:hover
|
241
|
+
background: image-url("prettyPhoto/dark_square/sprite.png") -31px -47px no-repeat
|
242
|
+
cursor: pointer
|
243
|
+
.pp_contract
|
244
|
+
background: image-url("prettyPhoto/dark_square/sprite.png") 0 -26px no-repeat
|
245
|
+
cursor: pointer
|
246
|
+
&:hover
|
247
|
+
background: image-url("prettyPhoto/dark_square/sprite.png") 0 -47px no-repeat
|
248
|
+
cursor: pointer
|
249
|
+
.pp_close
|
250
|
+
width: 75px
|
251
|
+
height: 22px
|
252
|
+
background: image-url("prettyPhoto/dark_square/sprite.png") -1px -1px no-repeat
|
253
|
+
cursor: pointer
|
254
|
+
.pp_nav
|
255
|
+
clear: none
|
256
|
+
.pp_play
|
257
|
+
background: image-url("prettyPhoto/dark_square/sprite.png") -1px -100px no-repeat
|
258
|
+
height: 15px
|
259
|
+
width: 14px
|
260
|
+
.pp_pause
|
261
|
+
background: image-url("prettyPhoto/dark_square/sprite.png") -24px -100px no-repeat
|
262
|
+
height: 15px
|
263
|
+
width: 14px
|
264
|
+
.pp_arrow_previous
|
265
|
+
background: image-url("prettyPhoto/dark_square/sprite.png") 0 -71px no-repeat
|
266
|
+
.pp_arrow_next
|
267
|
+
background: image-url("prettyPhoto/dark_square/sprite.png") -22px -71px no-repeat
|
268
|
+
.pp_next:hover
|
269
|
+
background: image-url("prettyPhoto/dark_square/btnNext.png") center right no-repeat
|
270
|
+
cursor: pointer
|
271
|
+
.pp_previous:hover
|
272
|
+
background: image-url("prettyPhoto/dark_square/btnPrevious.png") center left no-repeat
|
273
|
+
cursor: pointer
|
274
|
+
&.light_square
|
275
|
+
.pp_expand
|
276
|
+
background: image-url("prettyPhoto/light_square/sprite.png") -31px -26px no-repeat
|
277
|
+
cursor: pointer
|
278
|
+
&:hover
|
279
|
+
background: image-url("prettyPhoto/light_square/sprite.png") -31px -47px no-repeat
|
280
|
+
cursor: pointer
|
281
|
+
.pp_contract
|
282
|
+
background: image-url("prettyPhoto/light_square/sprite.png") 0 -26px no-repeat
|
283
|
+
cursor: pointer
|
284
|
+
&:hover
|
285
|
+
background: image-url("prettyPhoto/light_square/sprite.png") 0 -47px no-repeat
|
286
|
+
cursor: pointer
|
287
|
+
.pp_close
|
288
|
+
width: 75px
|
289
|
+
height: 22px
|
290
|
+
background: image-url("prettyPhoto/light_square/sprite.png") -1px -1px no-repeat
|
291
|
+
cursor: pointer
|
292
|
+
.pp_nav
|
293
|
+
.pp_play
|
294
|
+
background: image-url("prettyPhoto/light_square/sprite.png") -1px -100px no-repeat
|
295
|
+
height: 15px
|
296
|
+
width: 14px
|
297
|
+
.pp_pause
|
298
|
+
background: image-url("prettyPhoto/light_square/sprite.png") -24px -100px no-repeat
|
299
|
+
height: 15px
|
300
|
+
width: 14px
|
301
|
+
.pp_arrow_previous
|
302
|
+
background: image-url("prettyPhoto/light_square/sprite.png") 0 -71px no-repeat
|
303
|
+
.pp_arrow_next
|
304
|
+
background: image-url("prettyPhoto/light_square/sprite.png") -22px -71px no-repeat
|
305
|
+
.pp_next:hover
|
306
|
+
background: image-url("prettyPhoto/light_square/btnNext.png") center right no-repeat
|
307
|
+
cursor: pointer
|
308
|
+
.pp_previous:hover
|
309
|
+
background: image-url("prettyPhoto/light_square/btnPrevious.png") center left no-repeat
|
310
|
+
cursor: pointer
|
311
|
+
&.facebook
|
312
|
+
.pp_top
|
313
|
+
.pp_left
|
314
|
+
background: image-url("prettyPhoto/facebook/sprite.png") -88px -53px no-repeat
|
315
|
+
.pp_middle
|
316
|
+
background: image-url("prettyPhoto/facebook/contentPatternTop.png") top left repeat-x
|
317
|
+
.pp_right
|
318
|
+
background: image-url("prettyPhoto/facebook/sprite.png") -110px -53px no-repeat
|
319
|
+
.pp_content_container
|
320
|
+
.pp_left
|
321
|
+
background: image-url("prettyPhoto/facebook/contentPatternLeft.png") top left repeat-y
|
322
|
+
.pp_right
|
323
|
+
background: image-url("prettyPhoto/facebook/contentPatternRight.png") top right repeat-y
|
324
|
+
.pp_expand
|
325
|
+
background: image-url("prettyPhoto/facebook/sprite.png") -31px -26px no-repeat
|
326
|
+
cursor: pointer
|
327
|
+
&:hover
|
328
|
+
background: image-url("prettyPhoto/facebook/sprite.png") -31px -47px no-repeat
|
329
|
+
cursor: pointer
|
330
|
+
.pp_contract
|
331
|
+
background: image-url("prettyPhoto/facebook/sprite.png") 0 -26px no-repeat
|
332
|
+
cursor: pointer
|
333
|
+
&:hover
|
334
|
+
background: image-url("prettyPhoto/facebook/sprite.png") 0 -47px no-repeat
|
335
|
+
cursor: pointer
|
336
|
+
.pp_close
|
337
|
+
width: 22px
|
338
|
+
height: 22px
|
339
|
+
background: image-url("prettyPhoto/facebook/sprite.png") -1px -1px no-repeat
|
340
|
+
cursor: pointer
|
341
|
+
.pp_description
|
342
|
+
margin: 0 37px 0 0
|
343
|
+
.pp_loaderIcon
|
344
|
+
background: image-url("prettyPhoto/facebook/loader.gif") center center no-repeat
|
345
|
+
.pp_arrow_previous
|
346
|
+
background: image-url("prettyPhoto/facebook/sprite.png") 0 -71px no-repeat
|
347
|
+
height: 22px
|
348
|
+
margin-top: 0
|
349
|
+
width: 22px
|
350
|
+
&.disabled
|
351
|
+
background-position: 0 -96px
|
352
|
+
cursor: default
|
353
|
+
.pp_arrow_next
|
354
|
+
background: image-url("prettyPhoto/facebook/sprite.png") -32px -71px no-repeat
|
355
|
+
height: 22px
|
356
|
+
margin-top: 0
|
357
|
+
width: 22px
|
358
|
+
&.disabled
|
359
|
+
background-position: -32px -96px
|
360
|
+
cursor: default
|
361
|
+
.pp_nav
|
362
|
+
margin-top: 0
|
363
|
+
p
|
364
|
+
font-size: 15px
|
365
|
+
padding: 0 3px 0 4px
|
366
|
+
.pp_play
|
367
|
+
background: image-url("prettyPhoto/facebook/sprite.png") -1px -123px no-repeat
|
368
|
+
height: 22px
|
369
|
+
width: 22px
|
370
|
+
.pp_pause
|
371
|
+
background: image-url("prettyPhoto/facebook/sprite.png") -32px -123px no-repeat
|
372
|
+
height: 22px
|
373
|
+
width: 22px
|
374
|
+
.pp_next:hover
|
375
|
+
background: image-url("prettyPhoto/facebook/btnNext.png") center right no-repeat
|
376
|
+
cursor: pointer
|
377
|
+
.pp_previous:hover
|
378
|
+
background: image-url("prettyPhoto/facebook/btnPrevious.png") center left no-repeat
|
379
|
+
cursor: pointer
|
380
|
+
.pp_bottom
|
381
|
+
.pp_left
|
382
|
+
background: image-url("prettyPhoto/facebook/sprite.png") -88px -80px no-repeat
|
383
|
+
.pp_middle
|
384
|
+
background: image-url("prettyPhoto/facebook/contentPatternBottom.png") top left repeat-x
|
385
|
+
.pp_right
|
386
|
+
background: image-url("prettyPhoto/facebook/sprite.png") -110px -80px no-repeat
|
387
|
+
&.pp_pic_holder a:focus
|
388
|
+
outline: none
|
389
|
+
&.pp_overlay
|
390
|
+
background: #000
|
391
|
+
display: none
|
392
|
+
left: 0
|
393
|
+
position: absolute
|
394
|
+
top: 0
|
395
|
+
width: 100%
|
396
|
+
z-index: 9500
|
397
|
+
&.pp_pic_holder
|
398
|
+
display: none
|
399
|
+
position: absolute
|
400
|
+
width: 100px
|
401
|
+
z-index: 10000
|
402
|
+
|
403
|
+
.pp_content
|
404
|
+
height: 40px
|
405
|
+
min-width: 40px
|
406
|
+
|
407
|
+
* html .pp_content
|
408
|
+
width: 40px
|
409
|
+
|
410
|
+
.pp_content_container
|
411
|
+
position: relative
|
412
|
+
text-align: left
|
413
|
+
width: 100%
|
414
|
+
.pp_left
|
415
|
+
padding-left: 20px
|
416
|
+
.pp_right
|
417
|
+
padding-right: 20px
|
418
|
+
.pp_details
|
419
|
+
float: left
|
420
|
+
margin: 10px 0 2px
|
421
|
+
|
422
|
+
.pp_description
|
423
|
+
display: none
|
424
|
+
margin: 0
|
425
|
+
|
426
|
+
.pp_social
|
427
|
+
float: left
|
428
|
+
margin: 0
|
429
|
+
.facebook
|
430
|
+
float: left
|
431
|
+
margin-left: 5px
|
432
|
+
width: 55px
|
433
|
+
overflow: hidden
|
434
|
+
.twitter
|
435
|
+
float: left
|
436
|
+
|
437
|
+
.pp_nav
|
438
|
+
clear: right
|
439
|
+
float: left
|
440
|
+
margin: 3px 10px 0 0
|
441
|
+
p
|
442
|
+
float: left
|
443
|
+
white-space: nowrap
|
444
|
+
margin: 2px 4px
|
445
|
+
.pp_play, .pp_pause
|
446
|
+
float: left
|
447
|
+
margin-right: 4px
|
448
|
+
text-indent: -10000px
|
449
|
+
|
450
|
+
a
|
451
|
+
&.pp_arrow_previous, &.pp_arrow_next
|
452
|
+
display: block
|
453
|
+
float: left
|
454
|
+
height: 15px
|
455
|
+
margin-top: 3px
|
456
|
+
overflow: hidden
|
457
|
+
text-indent: -10000px
|
458
|
+
width: 14px
|
459
|
+
|
460
|
+
.pp_hoverContainer
|
461
|
+
position: absolute
|
462
|
+
top: 0
|
463
|
+
width: 100%
|
464
|
+
z-index: 2000
|
465
|
+
|
466
|
+
.pp_gallery
|
467
|
+
display: none
|
468
|
+
left: 50%
|
469
|
+
margin-top: -50px
|
470
|
+
position: absolute
|
471
|
+
z-index: 10000
|
472
|
+
div
|
473
|
+
float: left
|
474
|
+
overflow: hidden
|
475
|
+
position: relative
|
476
|
+
ul
|
477
|
+
float: left
|
478
|
+
height: 35px
|
479
|
+
position: relative
|
480
|
+
white-space: nowrap
|
481
|
+
margin: 0 0 0 5px
|
482
|
+
padding: 0
|
483
|
+
a
|
484
|
+
border: 1px rgba(0, 0, 0, 0.5) solid
|
485
|
+
display: block
|
486
|
+
float: left
|
487
|
+
height: 33px
|
488
|
+
overflow: hidden
|
489
|
+
img
|
490
|
+
border: 0
|
491
|
+
li
|
492
|
+
display: block
|
493
|
+
float: left
|
494
|
+
margin: 0 5px 0 0
|
495
|
+
padding: 0
|
496
|
+
&.default a
|
497
|
+
background: image-url("prettyPhoto/facebook/default_thumbnail.gif") 0 0 no-repeat
|
498
|
+
display: block
|
499
|
+
height: 33px
|
500
|
+
width: 50px
|
501
|
+
.pp_arrow_previous, .pp_arrow_next
|
502
|
+
margin-top: 7px!important
|
503
|
+
|
504
|
+
a
|
505
|
+
&.pp_next
|
506
|
+
background: image-url("prettyPhoto/light_rounded/btnNext.png") 10000px 10000px no-repeat
|
507
|
+
display: block
|
508
|
+
float: right
|
509
|
+
height: 100%
|
510
|
+
text-indent: -10000px
|
511
|
+
width: 49%
|
512
|
+
&.pp_previous
|
513
|
+
background: image-url("prettyPhoto/light_rounded/btnNext.png") 10000px 10000px no-repeat
|
514
|
+
display: block
|
515
|
+
float: left
|
516
|
+
height: 100%
|
517
|
+
text-indent: -10000px
|
518
|
+
width: 49%
|
519
|
+
&.pp_expand, &.pp_contract
|
520
|
+
cursor: pointer
|
521
|
+
display: none
|
522
|
+
height: 20px
|
523
|
+
position: absolute
|
524
|
+
right: 30px
|
525
|
+
text-indent: -10000px
|
526
|
+
top: 10px
|
527
|
+
width: 20px
|
528
|
+
z-index: 20000
|
529
|
+
&.pp_close
|
530
|
+
position: absolute
|
531
|
+
right: 0
|
532
|
+
top: 0
|
533
|
+
display: block
|
534
|
+
line-height: 22px
|
535
|
+
text-indent: -10000px
|
536
|
+
|
537
|
+
.pp_loaderIcon
|
538
|
+
display: block
|
539
|
+
height: 24px
|
540
|
+
left: 50%
|
541
|
+
position: absolute
|
542
|
+
top: 50%
|
543
|
+
width: 24px
|
544
|
+
margin: -12px 0 0 -12px
|
545
|
+
|
546
|
+
#pp_full_res
|
547
|
+
line-height: 1!important
|
548
|
+
.pp_inline
|
549
|
+
text-align: left
|
550
|
+
p
|
551
|
+
margin: 0 0 15px
|
552
|
+
|
553
|
+
div
|
554
|
+
&.ppt
|
555
|
+
color: #fff
|
556
|
+
display: none
|
557
|
+
font-size: 17px
|
558
|
+
z-index: 9999
|
559
|
+
margin: 0 0 5px 15px
|
560
|
+
&.pp_default .pp_content, &.light_rounded .pp_content
|
561
|
+
background-color: #fff
|
562
|
+
&.pp_default #pp_full_res .pp_inline
|
563
|
+
color: #000
|
564
|
+
&.light_rounded
|
565
|
+
.pp_content .ppt, #pp_full_res .pp_inline
|
566
|
+
color: #000
|
567
|
+
&.light_square
|
568
|
+
.pp_content .ppt, #pp_full_res .pp_inline
|
569
|
+
color: #000
|
570
|
+
&.facebook
|
571
|
+
.pp_content .ppt, #pp_full_res .pp_inline
|
572
|
+
color: #000
|
573
|
+
&.pp_default .pp_gallery ul li
|
574
|
+
a:hover, &.selected a
|
575
|
+
border-color: #fff
|
576
|
+
|
577
|
+
.pp_gallery
|
578
|
+
ul a:hover, li.selected a
|
579
|
+
border-color: #fff
|
580
|
+
|
581
|
+
div
|
582
|
+
&.pp_default .pp_details, &.light_rounded .pp_details, &.dark_rounded .pp_details, &.dark_square .pp_details, &.light_square .pp_details, &.facebook .pp_details
|
583
|
+
position: relative
|
584
|
+
&.light_rounded
|
585
|
+
.pp_top .pp_middle
|
586
|
+
background: #fff
|
587
|
+
.pp_content_container
|
588
|
+
.pp_left, .pp_right
|
589
|
+
background: #fff
|
590
|
+
.pp_bottom .pp_middle
|
591
|
+
background: #fff
|
592
|
+
&.light_square
|
593
|
+
.pp_left, .pp_middle, .pp_right, .pp_content
|
594
|
+
background: #fff
|
595
|
+
&.facebook .pp_content
|
596
|
+
background: #fff
|
597
|
+
&.light_rounded .pp_description, &.light_square .pp_description
|
598
|
+
margin-right: 85px
|
599
|
+
&.light_rounded .pp_gallery a
|
600
|
+
&.pp_arrow_previous, &.pp_arrow_next
|
601
|
+
margin-top: 12px!important
|
602
|
+
&.dark_rounded .pp_gallery a
|
603
|
+
&.pp_arrow_previous, &.pp_arrow_next
|
604
|
+
margin-top: 12px!important
|
605
|
+
&.dark_square .pp_gallery a
|
606
|
+
&.pp_arrow_previous, &.pp_arrow_next
|
607
|
+
margin-top: 12px!important
|
608
|
+
&.light_square .pp_gallery a
|
609
|
+
&.pp_arrow_previous, &.pp_arrow_next
|
610
|
+
margin-top: 12px!important
|
611
|
+
&.light_rounded .pp_arrow_previous.disabled, &.dark_rounded .pp_arrow_previous.disabled, &.dark_square .pp_arrow_previous.disabled, &.light_square .pp_arrow_previous.disabled
|
612
|
+
background-position: 0 -87px
|
613
|
+
cursor: default
|
614
|
+
&.light_rounded .pp_arrow_next.disabled, &.dark_rounded .pp_arrow_next.disabled, &.dark_square .pp_arrow_next.disabled, &.light_square .pp_arrow_next.disabled
|
615
|
+
background-position: -22px -87px
|
616
|
+
cursor: default
|
617
|
+
&.light_rounded .pp_loaderIcon, &.light_square .pp_loaderIcon
|
618
|
+
background: image-url("prettyPhoto/light_rounded/loader.gif") center center no-repeat
|
619
|
+
&.dark_rounded
|
620
|
+
.pp_top .pp_middle, .pp_content, .pp_bottom .pp_middle
|
621
|
+
background: image-url("prettyPhoto/dark_rounded/contentPattern.png") top left repeat
|
622
|
+
.currentTextHolder
|
623
|
+
color: #c4c4c4
|
624
|
+
&.dark_square .currentTextHolder
|
625
|
+
color: #c4c4c4
|
626
|
+
&.dark_rounded #pp_full_res .pp_inline, &.dark_square #pp_full_res .pp_inline
|
627
|
+
color: #fff
|
628
|
+
|
629
|
+
.pp_top, .pp_bottom
|
630
|
+
height: 20px
|
631
|
+
position: relative
|
632
|
+
|
633
|
+
* html
|
634
|
+
.pp_top, .pp_bottom
|
635
|
+
padding: 0 20px
|
636
|
+
|
637
|
+
.pp_top .pp_left, .pp_bottom .pp_left
|
638
|
+
height: 20px
|
639
|
+
left: 0
|
640
|
+
position: absolute
|
641
|
+
width: 20px
|
642
|
+
|
643
|
+
.pp_top .pp_middle, .pp_bottom .pp_middle
|
644
|
+
height: 20px
|
645
|
+
left: 20px
|
646
|
+
position: absolute
|
647
|
+
right: 20px
|
648
|
+
|
649
|
+
* html
|
650
|
+
.pp_top .pp_middle, .pp_bottom .pp_middle
|
651
|
+
left: 0
|
652
|
+
position: static
|
653
|
+
|
654
|
+
.pp_top .pp_right, .pp_bottom .pp_right
|
655
|
+
height: 20px
|
656
|
+
left: auto
|
657
|
+
position: absolute
|
658
|
+
right: 0
|
659
|
+
top: 0
|
660
|
+
width: 20px
|
661
|
+
|
662
|
+
.pp_fade, .pp_gallery li.default a img
|
663
|
+
display: none
|