showoff 0.18.2 → 0.19.0

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.
@@ -0,0 +1,503 @@
1
+ .introjs-overlay {
2
+ position: absolute;
3
+ box-sizing: content-box;
4
+ z-index: 999999;
5
+ background-color: #000;
6
+ opacity: 0;
7
+ background: -moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
8
+ background: -webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.4)),color-stop(100%,rgba(0,0,0,0.9)));
9
+ background: -webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
10
+ background: -o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
11
+ background: -ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
12
+ background: radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
13
+ filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000',endColorstr='#e6000000',GradientType=1)";
14
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
15
+ filter: alpha(opacity=50);
16
+ -webkit-transition: all 0.3s ease-out;
17
+ -moz-transition: all 0.3s ease-out;
18
+ -ms-transition: all 0.3s ease-out;
19
+ -o-transition: all 0.3s ease-out;
20
+ transition: all 0.3s ease-out;
21
+ }
22
+
23
+ .introjs-fixParent {
24
+ z-index: auto !important;
25
+ opacity: 1.0 !important;
26
+ }
27
+
28
+ .introjs-fixElement {
29
+ transform-origin: top left !important;
30
+ position: relative !important;
31
+ margin: 5px !important;
32
+ top: 0 !important;
33
+ right: 0 !important;
34
+ bottom: 0 !important;
35
+ left: 0 !important;
36
+ float: none !important;
37
+ overflow: hidden !important;
38
+ }
39
+
40
+ .introjs-showElement,
41
+ tr.introjs-showElement > td,
42
+ tr.introjs-showElement > th {
43
+ z-index: 9999999 !important;
44
+ }
45
+
46
+ .introjs-disableInteraction {
47
+ z-index: 99999999 !important;
48
+ position: absolute;
49
+ background-color: white;
50
+ opacity: 0;
51
+ filter: alpha(opacity=0);
52
+ }
53
+
54
+ .introjs-relativePosition,
55
+ tr.introjs-showElement > td,
56
+ tr.introjs-showElement > th {
57
+ position: relative;
58
+ }
59
+
60
+ .introjs-helperLayer {
61
+ box-sizing: content-box;
62
+ position: absolute;
63
+ z-index: 9999998;
64
+ background-color: #FFF;
65
+ background-color: rgba(255,255,255,.9);
66
+ border: 1px solid #777;
67
+ border: 1px solid rgba(0,0,0,.5);
68
+ border-radius: 4px;
69
+ box-shadow: 0 2px 15px rgba(0,0,0,.4);
70
+ -webkit-transition: all 0.3s ease-out;
71
+ -moz-transition: all 0.3s ease-out;
72
+ -ms-transition: all 0.3s ease-out;
73
+ -o-transition: all 0.3s ease-out;
74
+ transition: all 0.3s ease-out;
75
+ }
76
+
77
+ .introjs-tooltipReferenceLayer {
78
+ box-sizing: content-box;
79
+ position: absolute;
80
+ visibility: hidden;
81
+ z-index: 10000000;
82
+ background-color: transparent;
83
+ -webkit-transition: all 0.3s ease-out;
84
+ -moz-transition: all 0.3s ease-out;
85
+ -ms-transition: all 0.3s ease-out;
86
+ -o-transition: all 0.3s ease-out;
87
+ transition: all 0.3s ease-out;
88
+ }
89
+
90
+ .introjs-helperLayer *,
91
+ .introjs-helperLayer *:before,
92
+ .introjs-helperLayer *:after {
93
+ -webkit-box-sizing: content-box;
94
+ -moz-box-sizing: content-box;
95
+ -ms-box-sizing: content-box;
96
+ -o-box-sizing: content-box;
97
+ box-sizing: content-box;
98
+ }
99
+
100
+ .introjs-helperNumberLayer {
101
+ box-sizing: content-box;
102
+ position: absolute;
103
+ visibility: visible;
104
+ top: -16px;
105
+ left: -16px;
106
+ z-index: 9999999999 !important;
107
+ padding: 2px;
108
+ font-family: Arial, verdana, tahoma;
109
+ font-size: 13px;
110
+ font-weight: bold;
111
+ color: white;
112
+ text-align: center;
113
+ text-shadow: 1px 1px 1px rgba(0,0,0,.3);
114
+ background: #ff3019; /* Old browsers */
115
+ background: -webkit-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Chrome10+,Safari5.1+ */
116
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff3019), color-stop(100%, #cf0404)); /* Chrome,Safari4+ */
117
+ background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* FF3.6+ */
118
+ background: -ms-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* IE10+ */
119
+ background: -o-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Opera 11.10+ */
120
+ background: linear-gradient(to bottom, #ff3019 0%, #cf0404 100%); /* W3C */
121
+ width: 20px;
122
+ height:20px;
123
+ line-height: 20px;
124
+ border: 3px solid white;
125
+ border-radius: 50%;
126
+ filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3019', endColorstr='#cf0404', GradientType=0)"; /* IE6-9 */
127
+ filter: "progid:DXImageTransform.Microsoft.Shadow(direction=135, strength=2, color=ff0000)"; /* IE10 text shadows */
128
+ box-shadow: 0 2px 5px rgba(0,0,0,.4);
129
+ }
130
+
131
+ .introjs-arrow {
132
+ border: 5px solid white;
133
+ content:'';
134
+ position: absolute;
135
+ }
136
+ .introjs-arrow.top {
137
+ top: -10px;
138
+ border-top-color:transparent;
139
+ border-right-color:transparent;
140
+ border-bottom-color:white;
141
+ border-left-color:transparent;
142
+ }
143
+ .introjs-arrow.top-right {
144
+ top: -10px;
145
+ right: 10px;
146
+ border-top-color:transparent;
147
+ border-right-color:transparent;
148
+ border-bottom-color:white;
149
+ border-left-color:transparent;
150
+ }
151
+ .introjs-arrow.top-middle {
152
+ top: -10px;
153
+ left: 50%;
154
+ margin-left: -5px;
155
+ border-top-color:transparent;
156
+ border-right-color:transparent;
157
+ border-bottom-color:white;
158
+ border-left-color:transparent;
159
+ }
160
+ .introjs-arrow.right {
161
+ right: -10px;
162
+ top: 10px;
163
+ border-top-color:transparent;
164
+ border-right-color:transparent;
165
+ border-bottom-color:transparent;
166
+ border-left-color:white;
167
+ }
168
+ .introjs-arrow.right-bottom {
169
+ bottom:10px;
170
+ right: -10px;
171
+ border-top-color:transparent;
172
+ border-right-color:transparent;
173
+ border-bottom-color:transparent;
174
+ border-left-color:white;
175
+ }
176
+ .introjs-arrow.bottom {
177
+ bottom: -10px;
178
+ border-top-color:white;
179
+ border-right-color:transparent;
180
+ border-bottom-color:transparent;
181
+ border-left-color:transparent;
182
+ }
183
+ .introjs-arrow.left {
184
+ left: -10px;
185
+ top: 10px;
186
+ border-top-color:transparent;
187
+ border-right-color:white;
188
+ border-bottom-color:transparent;
189
+ border-left-color:transparent;
190
+ }
191
+ .introjs-arrow.left-bottom {
192
+ left: -10px;
193
+ bottom:10px;
194
+ border-top-color:transparent;
195
+ border-right-color:white;
196
+ border-bottom-color:transparent;
197
+ border-left-color:transparent;
198
+ }
199
+
200
+ .introjs-tooltip {
201
+ box-sizing: content-box;
202
+ position: absolute;
203
+ visibility: visible;
204
+ padding: 10px;
205
+ background-color: white;
206
+ min-width: 200px;
207
+ max-width: 300px;
208
+ border-radius: 3px;
209
+ box-shadow: 0 1px 10px rgba(0,0,0,.4);
210
+ -webkit-transition: opacity 0.1s ease-out;
211
+ -moz-transition: opacity 0.1s ease-out;
212
+ -ms-transition: opacity 0.1s ease-out;
213
+ -o-transition: opacity 0.1s ease-out;
214
+ transition: opacity 0.1s ease-out;
215
+ }
216
+
217
+ .introjs-tooltipbuttons {
218
+ text-align: right;
219
+ white-space: nowrap;
220
+ }
221
+
222
+ /*
223
+ Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
224
+ Changed by Afshin Mehrabani
225
+ */
226
+ .introjs-button {
227
+ box-sizing: content-box;
228
+ position: relative;
229
+ overflow: visible;
230
+ display: inline-block;
231
+ padding: 0.3em 0.8em;
232
+ border: 1px solid #d4d4d4;
233
+ margin: 0;
234
+ text-decoration: none;
235
+ text-shadow: 1px 1px 0 #fff;
236
+ font: 11px/normal sans-serif;
237
+ color: #333;
238
+ white-space: nowrap;
239
+ cursor: pointer;
240
+ outline: none;
241
+ background-color: #ececec;
242
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
243
+ background-image: -moz-linear-gradient(#f4f4f4, #ececec);
244
+ background-image: -o-linear-gradient(#f4f4f4, #ececec);
245
+ background-image: linear-gradient(#f4f4f4, #ececec);
246
+ -webkit-background-clip: padding;
247
+ -moz-background-clip: padding;
248
+ -o-background-clip: padding-box;
249
+ /*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
250
+ -webkit-border-radius: 0.2em;
251
+ -moz-border-radius: 0.2em;
252
+ border-radius: 0.2em;
253
+ /* IE hacks */
254
+ zoom: 1;
255
+ *display: inline;
256
+ margin-top: 10px;
257
+ }
258
+
259
+ .introjs-button:hover {
260
+ border-color: #bcbcbc;
261
+ text-decoration: none;
262
+ box-shadow: 0px 1px 1px #e3e3e3;
263
+ }
264
+
265
+ .introjs-button:focus,
266
+ .introjs-button:active {
267
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ececec), to(#f4f4f4));
268
+ background-image: -moz-linear-gradient(#ececec, #f4f4f4);
269
+ background-image: -o-linear-gradient(#ececec, #f4f4f4);
270
+ background-image: linear-gradient(#ececec, #f4f4f4);
271
+ }
272
+
273
+ /* overrides extra padding on button elements in Firefox */
274
+ .introjs-button::-moz-focus-inner {
275
+ padding: 0;
276
+ border: 0;
277
+ }
278
+
279
+ .introjs-skipbutton {
280
+ box-sizing: content-box;
281
+ margin-right: 5px;
282
+ color: #7a7a7a;
283
+ }
284
+
285
+ .introjs-prevbutton {
286
+ -webkit-border-radius: 0.2em 0 0 0.2em;
287
+ -moz-border-radius: 0.2em 0 0 0.2em;
288
+ border-radius: 0.2em 0 0 0.2em;
289
+ border-right: none;
290
+ }
291
+
292
+ .introjs-prevbutton.introjs-fullbutton {
293
+ border: 1px solid #d4d4d4;
294
+ -webkit-border-radius: 0.2em;
295
+ -moz-border-radius: 0.2em;
296
+ border-radius: 0.2em;
297
+ }
298
+
299
+ .introjs-nextbutton {
300
+ -webkit-border-radius: 0 0.2em 0.2em 0;
301
+ -moz-border-radius: 0 0.2em 0.2em 0;
302
+ border-radius: 0 0.2em 0.2em 0;
303
+ }
304
+
305
+ .introjs-nextbutton.introjs-fullbutton {
306
+ -webkit-border-radius: 0.2em;
307
+ -moz-border-radius: 0.2em;
308
+ border-radius: 0.2em;
309
+ }
310
+
311
+ .introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
312
+ color: #9a9a9a;
313
+ border-color: #d4d4d4;
314
+ box-shadow: none;
315
+ cursor: default;
316
+ background-color: #f4f4f4;
317
+ background-image: none;
318
+ text-decoration: none;
319
+ }
320
+
321
+ .introjs-hidden {
322
+ display: none;
323
+ }
324
+
325
+ .introjs-bullets {
326
+ text-align: center;
327
+ }
328
+ .introjs-bullets ul {
329
+ box-sizing: content-box;
330
+ clear: both;
331
+ margin: 15px auto 0;
332
+ padding: 0;
333
+ display: inline-block;
334
+ }
335
+ .introjs-bullets ul li {
336
+ box-sizing: content-box;
337
+ list-style: none;
338
+ float: left;
339
+ margin: 0 2px;
340
+ }
341
+ .introjs-bullets ul li a {
342
+ box-sizing: content-box;
343
+ display: block;
344
+ width: 6px;
345
+ height: 6px;
346
+ background: #ccc;
347
+ border-radius: 10px;
348
+ -moz-border-radius: 10px;
349
+ -webkit-border-radius: 10px;
350
+ text-decoration: none;
351
+ cursor: pointer;
352
+ }
353
+ .introjs-bullets ul li a:hover {
354
+ background: #999;
355
+ }
356
+ .introjs-bullets ul li a.active {
357
+ background: #999;
358
+ }
359
+
360
+ .introjs-progress {
361
+ box-sizing: content-box;
362
+ overflow: hidden;
363
+ height: 10px;
364
+ margin: 10px 0 5px 0;
365
+ border-radius: 4px;
366
+ background-color: #ecf0f1
367
+ }
368
+ .introjs-progressbar {
369
+ box-sizing: content-box;
370
+ float: left;
371
+ width: 0%;
372
+ height: 100%;
373
+ font-size: 10px;
374
+ line-height: 10px;
375
+ text-align: center;
376
+ background-color: #08c;
377
+ }
378
+
379
+ .introjsFloatingElement {
380
+ position: absolute;
381
+ height: 0;
382
+ width: 0;
383
+ left: 50%;
384
+ top: 50%;
385
+ }
386
+
387
+ .introjs-fixedTooltip {
388
+ position: fixed;
389
+ }
390
+
391
+ .introjs-hint {
392
+ box-sizing: content-box;
393
+ position: absolute;
394
+ background: transparent;
395
+ width: 20px;
396
+ height: 15px;
397
+ cursor: pointer;
398
+ }
399
+ .introjs-hint:focus {
400
+ border: 0;
401
+ outline: 0;
402
+ }
403
+ .introjs-hidehint {
404
+ display: none;
405
+ }
406
+
407
+ .introjs-fixedhint {
408
+ position: fixed;
409
+ }
410
+
411
+ .introjs-hint:hover > .introjs-hint-pulse {
412
+ border: 5px solid rgba(60, 60, 60, 0.57);
413
+ }
414
+
415
+ .introjs-hint-pulse {
416
+ box-sizing: content-box;
417
+ width: 10px;
418
+ height: 10px;
419
+ border: 5px solid rgba(60, 60, 60, 0.27);
420
+ -webkit-border-radius: 30px;
421
+ -moz-border-radius: 30px;
422
+ border-radius: 30px;
423
+ background-color: rgba(136, 136, 136, 0.24);
424
+ z-index: 10;
425
+ position: absolute;
426
+ -webkit-transition: all 0.2s ease-out;
427
+ -moz-transition: all 0.2s ease-out;
428
+ -ms-transition: all 0.2s ease-out;
429
+ -o-transition: all 0.2s ease-out;
430
+ transition: all 0.2s ease-out;
431
+ }
432
+ .introjs-hint-no-anim .introjs-hint-dot {
433
+ -webkit-animation: none;
434
+ -moz-animation: none;
435
+ animation: none;
436
+ }
437
+ .introjs-hint-dot {
438
+ box-sizing: content-box;
439
+ border: 10px solid rgba(146, 146, 146, 0.36);
440
+ background: transparent;
441
+ -webkit-border-radius: 60px;
442
+ -moz-border-radius: 60px;
443
+ border-radius: 60px;
444
+ height: 50px;
445
+ width: 50px;
446
+ -webkit-animation: introjspulse 3s ease-out;
447
+ -moz-animation: introjspulse 3s ease-out;
448
+ animation: introjspulse 3s ease-out;
449
+ -webkit-animation-iteration-count: infinite;
450
+ -moz-animation-iteration-count: infinite;
451
+ animation-iteration-count: infinite;
452
+ position: absolute;
453
+ top: -25px;
454
+ left: -25px;
455
+ z-index: 1;
456
+ opacity: 0;
457
+ }
458
+
459
+ @-moz-keyframes introjspulse {
460
+ 0% {
461
+ -moz-transform: scale(0);
462
+ opacity: 0.0;
463
+ }
464
+ 25% {
465
+ -moz-transform: scale(0);
466
+ opacity: 0.1;
467
+ }
468
+ 50% {
469
+ -moz-transform: scale(0.1);
470
+ opacity: 0.3;
471
+ }
472
+ 75% {
473
+ -moz-transform: scale(0.5);
474
+ opacity: 0.5;
475
+ }
476
+ 100% {
477
+ -moz-transform: scale(1);
478
+ opacity: 0.0;
479
+ }
480
+ }
481
+
482
+ @-webkit-keyframes introjspulse {
483
+ 0% {
484
+ -webkit-transform: scale(0);
485
+ opacity: 0.0;
486
+ }
487
+ 25% {
488
+ -webkit-transform: scale(0);
489
+ opacity: 0.1;
490
+ }
491
+ 50% {
492
+ -webkit-transform: scale(0.1);
493
+ opacity: 0.3;
494
+ }
495
+ 75% {
496
+ -webkit-transform: scale(0.5);
497
+ opacity: 0.5;
498
+ }
499
+ 100% {
500
+ -webkit-transform: scale(1);
501
+ opacity: 0.0;
502
+ }
503
+ }