roroacms 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. data/MIT-LICENSE +20 -20
  2. data/README.md +62 -61
  3. data/Rakefile +19 -19
  4. data/app/assets/javascripts/roroacms/admin/application.js +1 -3
  5. data/app/assets/javascripts/roroacms/admin/roroacms-tour.js +46 -46
  6. data/app/assets/javascripts/roroacms/application.js +9 -21
  7. data/app/assets/javascripts/roroacms/vendor/hopscotch.js +2409 -2409
  8. data/app/assets/stylesheets/roroacms/admin/application.css +5 -3
  9. data/app/assets/stylesheets/roroacms/vendor/hopscotch.css +512 -512
  10. data/app/assets/stylesheets/roroacms/vendor/jquery/jquery-ui.css +1177 -1177
  11. data/app/controllers/roroacms/admin_controller.rb +1 -0
  12. data/app/controllers/roroacms/application_controller.rb +5 -3
  13. data/app/helpers/roroacms/admin_roroa_helper.rb +4 -4
  14. data/app/helpers/roroacms/admin_view_helper.rb +16 -16
  15. data/app/helpers/roroacms/application_helper.rb +4 -4
  16. data/app/helpers/roroacms/general_helper.rb +8 -8
  17. data/app/helpers/roroacms/new_view_helper.rb +7 -6
  18. data/app/helpers/roroacms/routing_helper.rb +15 -15
  19. data/app/helpers/roroacms/seo_helper.rb +2 -1
  20. data/app/helpers/roroacms/theme_helper.rb +6 -6
  21. data/app/helpers/roroacms/view_helper.rb +4 -4
  22. data/app/mailers/roroacms/emailer.rb +31 -31
  23. data/app/views/layouts/roroacms/application.html.erb +1 -1
  24. data/app/views/roroacms/admin/partials/_append_sidebar_menu.html.erb +51 -51
  25. data/app/views/roroacms/admin/partials/_comment.html.erb +10 -1
  26. data/app/views/roroacms/admin/partials/_editor.html.erb +21 -21
  27. data/app/views/roroacms/setup/administrator.html.erb +72 -72
  28. data/app/views/roroacms/setup/index.html.erb +108 -108
  29. data/config/initializers/devise.rb +258 -258
  30. data/config/locales/devise.en.yml +115 -115
  31. data/config/locales/en.yml +1 -1
  32. data/config/routes.rb +96 -96
  33. data/db/migrate/20140801203556_add_admins.rb +44 -44
  34. data/db/migrate/20140802084604_add_roroacms_comments.rb +31 -31
  35. data/db/migrate/20140802084615_add_roroacms_menu_options.rb +24 -24
  36. data/db/migrate/20140802084624_add_roroacms_menus.rb +18 -18
  37. data/db/migrate/20140802084631_add_roroacms_posts.rb +42 -42
  38. data/db/migrate/20140802084638_add_roroacms_settings.rb +21 -21
  39. data/db/migrate/20140802084658_add_roroacms_term_anatomies.rb +20 -20
  40. data/db/migrate/20140802084707_add_roroacms_term_relationships.rb +23 -23
  41. data/db/migrate/20140802084717_add_roroacms_terms.rb +27 -27
  42. data/lib/ext/string.rb +4 -4
  43. data/lib/generators/roroacms/install_generator.rb +16 -16
  44. data/lib/roroacms/engine.rb +4 -5
  45. data/lib/roroacms/version.rb +3 -3
  46. data/lib/roroacms.rb +5 -5
  47. data/lib/tasks/roroacms_tasks.rake +9 -9
  48. data/spec/controllers/roroacms/admin/themes_controller_spec.rb +2 -2
  49. data/spec/dummy/README.rdoc +28 -28
  50. data/spec/dummy/Rakefile +6 -6
  51. data/spec/dummy/app/controllers/application_controller.rb +5 -5
  52. data/spec/dummy/app/helpers/application_helper.rb +2 -2
  53. data/spec/dummy/app/helpers/theme_helper.rb +12 -12
  54. data/spec/dummy/app/views/layouts/application.html.erb +14 -14
  55. data/spec/dummy/app/views/theme/roroa-bootstrap-3/theme_helper.rb +8 -8
  56. data/spec/dummy/app/views/theme/roroa1/assets/stylesheets/style.css.scss +8 -8
  57. data/spec/dummy/app/views/theme/roroa1/layout.html.erb +1 -1
  58. data/spec/dummy/bin/bundle +3 -3
  59. data/spec/dummy/bin/rails +4 -4
  60. data/spec/dummy/bin/rake +4 -4
  61. data/spec/dummy/config/application.rb +23 -23
  62. data/spec/dummy/config/boot.rb +5 -5
  63. data/spec/dummy/config/database.yml +7 -7
  64. data/spec/dummy/config/environment.rb +5 -5
  65. data/spec/dummy/config/environments/development.rb +37 -37
  66. data/spec/dummy/config/environments/production.rb +82 -82
  67. data/spec/dummy/config/environments/test.rb +39 -39
  68. data/spec/dummy/config/initializers/assets.rb +8 -8
  69. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -7
  70. data/spec/dummy/config/initializers/cookies_serializer.rb +2 -2
  71. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -4
  72. data/spec/dummy/config/initializers/inflections.rb +16 -16
  73. data/spec/dummy/config/initializers/mime_types.rb +4 -4
  74. data/spec/dummy/config/initializers/session_store.rb +3 -3
  75. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -14
  76. data/spec/dummy/config/locales/en.yml +23 -23
  77. data/spec/dummy/config/routes.rb +3 -3
  78. data/spec/dummy/config/secrets.yml +22 -22
  79. data/spec/dummy/config.ru +4 -4
  80. data/spec/dummy/db/schema.rb +149 -149
  81. data/spec/dummy/public/404.html +67 -67
  82. data/spec/dummy/public/422.html +67 -67
  83. data/spec/dummy/public/500.html +66 -66
  84. data/spec/dummy/public/javascripts/translations.js +1 -1
  85. data/spec/dummy/tmp/cache/i18n-js.yml +36 -36
  86. data/spec/models/roroacms/admin_spec.rb +67 -67
  87. data/spec/spec_helper.rb +35 -35
  88. data/spec/support/factories.rb +79 -79
  89. metadata +2 -2
@@ -1,512 +1,512 @@
1
- /**! hopscotch - v0.2.0
2
- *
3
- * Copyright 2014 LinkedIn Corp. All rights reserved.
4
- *
5
- * Licensed under the Apache License, Version 2.0 (the "License");
6
- * you may not use this file except in compliance with the License.
7
- * You may obtain a copy of the License at
8
- *
9
- * http://www.apache.org/licenses/LICENSE-2.0
10
- *
11
- * Unless required by applicable law or agreed to in writing, software
12
- * distributed under the License is distributed on an "AS IS" BASIS,
13
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- * See the License for the specific language governing permissions and
15
- * limitations under the License.
16
- */
17
- /**
18
- * This fade animation is based on Dan Eden's animate.css (http://daneden.me/animate/), under the terms of the MIT license.
19
- *
20
- * Copyright 2013 Dan Eden.
21
- *
22
- * Permission is hereby granted, free of charge, to any person obtaining a copy
23
- * of this software and associated documentation files (the "Software"), to deal
24
- * in the Software without restriction, including without limitation the rights
25
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
26
- * copies of the Software, and to permit persons to whom the Software is
27
- * furnished to do so, subject to the following conditions:
28
- *
29
- * The above copyright notice and this permission notice shall be included in
30
- * all copies or substantial portions of the Software.
31
- *
32
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
33
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
35
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
36
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
37
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
38
- * THE SOFTWARE.
39
- */
40
- .animated {
41
- -webkit-animation-fill-mode: both;
42
- -moz-animation-fill-mode: both;
43
- -ms-animation-fill-mode: both;
44
- -o-animation-fill-mode: both;
45
- animation-fill-mode: both;
46
- -webkit-animation-duration: 1s;
47
- -moz-animation-duration: 1s;
48
- -ms-animation-duration: 1s;
49
- -o-animation-duration: 1s;
50
- animation-duration: 1s;
51
- }
52
- @-webkit-keyframes fadeInUp {
53
- 0% {
54
- opacity: 0;
55
- -webkit-transform: translateY(20px);
56
- }
57
- 100% {
58
- opacity: 1;
59
- -webkit-transform: translateY(0);
60
- }
61
- }
62
- @-moz-keyframes fadeInUp {
63
- 0% {
64
- opacity: 0;
65
- -moz-transform: translateY(20px);
66
- }
67
- 100% {
68
- opacity: 1;
69
- -moz-transform: translateY(0);
70
- }
71
- }
72
- @-o-keyframes fadeInUp {
73
- 0% {
74
- opacity: 0;
75
- -o-transform: translateY(20px);
76
- }
77
- 100% {
78
- opacity: 1;
79
- -o-transform: translateY(0);
80
- }
81
- }
82
- @keyframes fadeInUp {
83
- 0% {
84
- opacity: 0;
85
- transform: translateY(20px);
86
- }
87
- 100% {
88
- opacity: 1;
89
- transform: translateY(0);
90
- }
91
- }
92
- .fade-in-up {
93
- -webkit-animation-name: fadeInUp;
94
- -moz-animation-name: fadeInUp;
95
- -o-animation-name: fadeInUp;
96
- animation-name: fadeInUp;
97
- }
98
- @-webkit-keyframes fadeInDown {
99
- 0% {
100
- opacity: 0;
101
- -webkit-transform: translateY(-20px);
102
- }
103
- 100% {
104
- opacity: 1;
105
- -webkit-transform: translateY(0);
106
- }
107
- }
108
- @-moz-keyframes fadeInDown {
109
- 0% {
110
- opacity: 0;
111
- -moz-transform: translateY(-20px);
112
- }
113
- 100% {
114
- opacity: 1;
115
- -moz-transform: translateY(0);
116
- }
117
- }
118
- @-o-keyframes fadeInDown {
119
- 0% {
120
- opacity: 0;
121
- -ms-transform: translateY(-20px);
122
- }
123
- 100% {
124
- opacity: 1;
125
- -ms-transform: translateY(0);
126
- }
127
- }
128
- @keyframes fadeInDown {
129
- 0% {
130
- opacity: 0;
131
- transform: translateY(-20px);
132
- }
133
- 100% {
134
- opacity: 1;
135
- transform: translateY(0);
136
- }
137
- }
138
- .fade-in-down {
139
- -webkit-animation-name: fadeInDown;
140
- -moz-animation-name: fadeInDown;
141
- -o-animation-name: fadeInDown;
142
- animation-name: fadeInDown;
143
- }
144
- @-webkit-keyframes fadeInRight {
145
- 0% {
146
- opacity: 0;
147
- -webkit-transform: translateX(-20px);
148
- }
149
- 100% {
150
- opacity: 1;
151
- -webkit-transform: translateX(0);
152
- }
153
- }
154
- @-moz-keyframes fadeInRight {
155
- 0% {
156
- opacity: 0;
157
- -moz-transform: translateX(-20px);
158
- }
159
- 100% {
160
- opacity: 1;
161
- -moz-transform: translateX(0);
162
- }
163
- }
164
- @-o-keyframes fadeInRight {
165
- 0% {
166
- opacity: 0;
167
- -o-transform: translateX(-20px);
168
- }
169
- 100% {
170
- opacity: 1;
171
- -o-transform: translateX(0);
172
- }
173
- }
174
- @keyframes fadeInRight {
175
- 0% {
176
- opacity: 0;
177
- transform: translateX(-20px);
178
- }
179
- 100% {
180
- opacity: 1;
181
- transform: translateX(0);
182
- }
183
- }
184
- .fade-in-right {
185
- -webkit-animation-name: fadeInRight;
186
- -moz-animation-name: fadeInRight;
187
- -o-animation-name: fadeInRight;
188
- animation-name: fadeInRight;
189
- }
190
- @-webkit-keyframes fadeInLeft {
191
- 0% {
192
- opacity: 0;
193
- -webkit-transform: translateX(20px);
194
- }
195
- 100% {
196
- opacity: 1;
197
- -webkit-transform: translateX(0);
198
- }
199
- }
200
- @-moz-keyframes fadeInLeft {
201
- 0% {
202
- opacity: 0;
203
- -moz-transform: translateX(20px);
204
- }
205
- 100% {
206
- opacity: 1;
207
- -moz-transform: translateX(0);
208
- }
209
- }
210
- @-o-keyframes fadeInLeft {
211
- 0% {
212
- opacity: 0;
213
- -o-transform: translateX(20px);
214
- }
215
- 100% {
216
- opacity: 1;
217
- -o-transform: translateX(0);
218
- }
219
- }
220
- @keyframes fadeInLeft {
221
- 0% {
222
- opacity: 0;
223
- transform: translateX(20px);
224
- }
225
- 100% {
226
- opacity: 1;
227
- transform: translateX(0);
228
- }
229
- }
230
- .fade-in-left {
231
- -webkit-animation-name: fadeInLeft;
232
- -moz-animation-name: fadeInLeft;
233
- -o-animation-name: fadeInLeft;
234
- animation-name: fadeInLeft;
235
- }
236
- div.hopscotch-bubble .hopscotch-nav-button {
237
- /* borrowed from katy styles */
238
- font-weight: bold;
239
- border-width: 1px;
240
- border-style: solid;
241
- cursor: pointer;
242
- margin: 0;
243
- overflow: visible;
244
- text-decoration: none !important;
245
- width: auto;
246
- padding: 0 10px;
247
- height: 26px;
248
- line-height: 24px;
249
- font-size: 12px;
250
- *zoom: 1;
251
- white-space: nowrap;
252
- display: -moz-inline-stack;
253
- display: inline-block;
254
- *vertical-align: auto;
255
- zoom: 1;
256
- *display: inline;
257
- vertical-align: middle;
258
- -moz-border-radius: 3px;
259
- -ms-border-radius: 3px;
260
- -o-border-radius: 3px;
261
- -webkit-border-radius: 3px;
262
- border-radius: 3px;
263
- -webkit-box-sizing: border-box;
264
- -moz-box-sizing: border-box;
265
- box-sizing: border-box;
266
- }
267
- div.hopscotch-bubble .hopscotch-nav-button:hover {
268
- *zoom: 1;
269
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
270
- -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
271
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
272
- }
273
- div.hopscotch-bubble .hopscotch-nav-button:active {
274
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25) inset;
275
- -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25) inset;
276
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25) inset;
277
- }
278
- div.hopscotch-bubble .hopscotch-nav-button.next {
279
- border-color: #1b5480;
280
- color: #fff;
281
- margin: 0 0 0 10px;
282
- /* HS specific*/
283
- text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
284
- background-color: #287bbc;
285
- filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#287bbc', endColorstr='#23639a');
286
- background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #287bbc), color-stop(100%, #23639a));
287
- background-image: -webkit-linear-gradient(top, #287bbc 0%, #23639a 100%);
288
- background-image: -moz-linear-gradient(top, #287bbc 0%, #23639a 100%);
289
- background-image: -o-linear-gradient(top, #287bbc 0%, #23639a 100%);
290
- background-image: linear-gradient(top, #287bbc 0%, #23639a 100%);
291
- }
292
- div.hopscotch-bubble .hopscotch-nav-button.next:hover {
293
- background-color: #2672ae;
294
- filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#2672ae', endColorstr='#1e4f7e');
295
- background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2672ae), color-stop(100%, #1e4f7e));
296
- background-image: -webkit-linear-gradient(top, #2672ae 0%, #1e4f7e 100%);
297
- background-image: -moz-linear-gradient(top, #2672ae 0%, #1e4f7e 100%);
298
- background-image: -o-linear-gradient(top, #2672ae 0%, #1e4f7e 100%);
299
- background-image: linear-gradient(top, #2672ae 0%, #1e4f7e 100%);
300
- }
301
- div.hopscotch-bubble .hopscotch-nav-button.prev {
302
- border-color: #a7a7a7;
303
- color: #444;
304
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
305
- background-color: #f2f2f2;
306
- filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f2f2f2', endColorstr='#e9e9e9');
307
- background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f2f2f2), color-stop(100%, #e9e9e9));
308
- background-image: -webkit-linear-gradient(top, #f2f2f2 0%, #e9e9e9 100%);
309
- background-image: -moz-linear-gradient(top, #f2f2f2 0%, #e9e9e9 100%);
310
- background-image: -o-linear-gradient(top, #f2f2f2 0%, #e9e9e9 100%);
311
- background-image: linear-gradient(top, #f2f2f2 0%, #e9e9e9 100%);
312
- }
313
- div.hopscotch-bubble .hopscotch-nav-button.prev:hover {
314
- background-color: #e8e8e8;
315
- filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE8E8E8', endColorstr='#FFA9A9A9');
316
- background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e8e8e8), color-stop(13%, #e3e3e3), color-stop(32%, #d7d7d7), color-stop(71%, #b9b9b9), color-stop(100%, #a9a9a9));
317
- background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #e3e3e3 13%, #d7d7d7 32%, #b9b9b9 71%, #a9a9a9 100%);
318
- background-image: -moz-linear-gradient(top, #e8e8e8 0%, #e3e3e3 13%, #d7d7d7 32%, #b9b9b9 71%, #a9a9a9 100%);
319
- background-image: -o-linear-gradient(top, #e8e8e8 0%, #e3e3e3 13%, #d7d7d7 32%, #b9b9b9 71%, #a9a9a9 100%);
320
- background-image: linear-gradient(top, #e8e8e8 0%, #e3e3e3 13%, #d7d7d7 32%, #b9b9b9 71%, #a9a9a9 100%);
321
- }
322
- div.hopscotch-bubble {
323
- background-color: #ffffff;
324
- color: #333;
325
- font-family: Helvetica, Arial;
326
- font-size: 13px;
327
- position: absolute;
328
- z-index: 999999;
329
- -moz-background-clip: padding;
330
- /* for Mozilla browsers*/
331
- -webkit-background-clip: padding;
332
- /* Webkit */
333
- background-clip: padding-box;
334
- /* browsers with full support */
335
- box-shadow:1px 1px 2px rgba(0, 0, 0, 0.2);
336
- }
337
- div.hopscotch-bubble.animate {
338
- -moz-transition-property: top, left;
339
- -moz-transition-duration: 1s;
340
- -moz-transition-timing-function: ease-in-out;
341
- -ms-transition-property: top, left;
342
- -ms-transition-duration: 1s;
343
- -ms-transition-timing-function: ease-in-out;
344
- -o-transition-property: top, left;
345
- -o-transition-duration: 1s;
346
- -o-transition-timing-function: ease-in-out;
347
- -webkit-transition-property: top, left;
348
- -webkit-transition-duration: 1s;
349
- -webkit-transition-timing-function: ease-in-out;
350
- transition-property: top, left;
351
- transition-duration: 1s;
352
- transition-timing-function: ease-in-out;
353
- }
354
- div.hopscotch-bubble.invisible {
355
- opacity: 0;
356
- }
357
- div.hopscotch-bubble.hide,
358
- div.hopscotch-bubble .hide,
359
- div.hopscotch-bubble .hide-all {
360
- display: none;
361
- }
362
- div.hopscotch-bubble h3 {
363
- color: #5d5f63;
364
- font-family: 'Source Sans Pro',Arial,sans-serif;
365
- font-size: 20px;
366
- font-weight: normal;
367
- line-height: 19px;
368
- margin: -1px 15px 0 0;
369
- padding: 0;
370
- }
371
- div.hopscotch-bubble .hopscotch-bubble-container {
372
- padding: 15px;
373
- position: relative;
374
- text-align: left;
375
- -webkit-font-smoothing: antialiased;
376
- /* to fix text flickering */
377
- }
378
- div.hopscotch-bubble .hopscotch-content {
379
- font-family: 'Open Sans',sans-serif;
380
- font-size: 13px;
381
- color:#5d5f63;
382
- font-weight: normal;
383
- line-height: 17px;
384
- margin: -5px 0 11px;
385
- padding-top: 20px;
386
- }
387
- div.hopscotch-bubble .hopscotch-bubble-content {
388
- /*margin: 0 0 0 40px;*/
389
- }
390
- div.hopscotch-bubble.no-number .hopscotch-bubble-content {
391
- margin: 0;
392
- }
393
- div.hopscotch-bubble .hopscotch-bubble-close {
394
- color: #000;
395
- display: block;
396
- padding: 8px;
397
- position: absolute;
398
- text-decoration: none;
399
- text-indent: -9999px;
400
- width: 8px;
401
- height: 8px;
402
- top: 0;
403
- right: 0;
404
- }
405
- div.hopscotch-bubble .hopscotch-bubble-close.hide,
406
- div.hopscotch-bubble .hopscotch-bubble-close.hide-all {
407
- display: none;
408
- }
409
- div.hopscotch-bubble .hopscotch-bubble-number {
410
- color: #fff;
411
- display: block;
412
- float: left;
413
- font-size: 17px;
414
- font-weight: bold;
415
- line-height: 31px;
416
- padding: 0 10px 0 0;
417
- text-align: center;
418
- width: 30px;
419
- height: 30px;
420
- display: none;
421
- }
422
- div.hopscotch-bubble .hopscotch-bubble-arrow-container {
423
- position: absolute;
424
- width: 34px;
425
- height: 34px;
426
- }
427
- div.hopscotch-bubble .hopscotch-bubble-arrow-container .hopscotch-bubble-arrow,
428
- div.hopscotch-bubble .hopscotch-bubble-arrow-container .hopscotch-bubble-arrow-border {
429
- width: 0;
430
- height: 0;
431
- }
432
- div.hopscotch-bubble .hopscotch-bubble-arrow-container.up {
433
- top: -22px;
434
- left: 10px;
435
- }
436
- div.hopscotch-bubble .hopscotch-bubble-arrow-container.up .hopscotch-bubble-arrow {
437
- border-bottom: 17px solid #ffffff;
438
- border-left: 17px solid transparent;
439
- border-right: 17px solid transparent;
440
- position: relative;
441
- top: -10px;
442
- }
443
- div.hopscotch-bubble .hopscotch-bubble-arrow-container.up .hopscotch-bubble-arrow-border {
444
- border-bottom: 17px solid #000000;
445
- border-bottom: 17px solid rgba(0, 0, 0, 0.5);
446
- border-left: 17px solid transparent;
447
- border-right: 17px solid transparent;
448
- }
449
- div.hopscotch-bubble .hopscotch-bubble-arrow-container.down {
450
- bottom: -39px;
451
- left: 10px;
452
- }
453
- div.hopscotch-bubble .hopscotch-bubble-arrow-container.down .hopscotch-bubble-arrow {
454
- border-top: 17px solid #ffffff;
455
- border-left: 17px solid transparent;
456
- border-right: 17px solid transparent;
457
- position: relative;
458
- top: -24px;
459
- }
460
- div.hopscotch-bubble .hopscotch-bubble-arrow-container.down .hopscotch-bubble-arrow-border {
461
- border-top: 17px solid #000000;
462
- border-top: 17px solid rgba(0, 0, 0, 0.5);
463
- border-left: 17px solid transparent;
464
- border-right: 17px solid transparent;
465
- }
466
- div.hopscotch-bubble .hopscotch-bubble-arrow-container.left {
467
- top: 10px;
468
- left: -22px;
469
- }
470
- div.hopscotch-bubble .hopscotch-bubble-arrow-container.left .hopscotch-bubble-arrow {
471
- border-bottom: 17px solid transparent;
472
- border-right: 17px solid #ffffff;
473
- border-top: 17px solid transparent;
474
- position: relative;
475
- left: 7px;
476
- top: 0px;
477
- }
478
- div.hopscotch-bubble .hopscotch-bubble-arrow-container.left .hopscotch-bubble-arrow-border {
479
- border-right: 34px solid #000000;
480
- border-right: 34px solid rgba(0, 0, 0, 0.5);
481
- }
482
- div.hopscotch-bubble .hopscotch-bubble-arrow-container.right {
483
- top: 10px;
484
- right: -39px;
485
- }
486
- div.hopscotch-bubble .hopscotch-bubble-arrow-container.right .hopscotch-bubble-arrow {
487
- border-bottom: 17px solid transparent;
488
- border-left: 17px solid #ffffff;
489
- border-top: 17px solid transparent;
490
- position: relative;
491
- left: -7px;
492
- top: -34px;
493
- }
494
- div.hopscotch-bubble .hopscotch-bubble-arrow-container.right .hopscotch-bubble-arrow-border {
495
- border-left: 17px solid #000000;
496
- border-left: 17px solid rgba(0, 0, 0, 0.5);
497
- border-bottom: 17px solid transparent;
498
- border-top: 17px solid transparent;
499
- }
500
- div.hopscotch-bubble .hopscotch-actions {
501
- margin: 10px 0 0;
502
- text-align: right;
503
- }
504
- /* Overlay styles */
505
- div.hopscotch-overlay {
506
- position: absolute;
507
- opacity: .3;
508
- background-color: #000;
509
- }
510
- div.hopscotch-overlay.hide {
511
- display: none;
512
- }
1
+ /**! hopscotch - v0.2.0
2
+ *
3
+ * Copyright 2014 LinkedIn Corp. All rights reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ /**
18
+ * This fade animation is based on Dan Eden's animate.css (http://daneden.me/animate/), under the terms of the MIT license.
19
+ *
20
+ * Copyright 2013 Dan Eden.
21
+ *
22
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
23
+ * of this software and associated documentation files (the "Software"), to deal
24
+ * in the Software without restriction, including without limitation the rights
25
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
26
+ * copies of the Software, and to permit persons to whom the Software is
27
+ * furnished to do so, subject to the following conditions:
28
+ *
29
+ * The above copyright notice and this permission notice shall be included in
30
+ * all copies or substantial portions of the Software.
31
+ *
32
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
33
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
35
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
36
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
37
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
38
+ * THE SOFTWARE.
39
+ */
40
+ .animated {
41
+ -webkit-animation-fill-mode: both;
42
+ -moz-animation-fill-mode: both;
43
+ -ms-animation-fill-mode: both;
44
+ -o-animation-fill-mode: both;
45
+ animation-fill-mode: both;
46
+ -webkit-animation-duration: 1s;
47
+ -moz-animation-duration: 1s;
48
+ -ms-animation-duration: 1s;
49
+ -o-animation-duration: 1s;
50
+ animation-duration: 1s;
51
+ }
52
+ @-webkit-keyframes fadeInUp {
53
+ 0% {
54
+ opacity: 0;
55
+ -webkit-transform: translateY(20px);
56
+ }
57
+ 100% {
58
+ opacity: 1;
59
+ -webkit-transform: translateY(0);
60
+ }
61
+ }
62
+ @-moz-keyframes fadeInUp {
63
+ 0% {
64
+ opacity: 0;
65
+ -moz-transform: translateY(20px);
66
+ }
67
+ 100% {
68
+ opacity: 1;
69
+ -moz-transform: translateY(0);
70
+ }
71
+ }
72
+ @-o-keyframes fadeInUp {
73
+ 0% {
74
+ opacity: 0;
75
+ -o-transform: translateY(20px);
76
+ }
77
+ 100% {
78
+ opacity: 1;
79
+ -o-transform: translateY(0);
80
+ }
81
+ }
82
+ @keyframes fadeInUp {
83
+ 0% {
84
+ opacity: 0;
85
+ transform: translateY(20px);
86
+ }
87
+ 100% {
88
+ opacity: 1;
89
+ transform: translateY(0);
90
+ }
91
+ }
92
+ .fade-in-up {
93
+ -webkit-animation-name: fadeInUp;
94
+ -moz-animation-name: fadeInUp;
95
+ -o-animation-name: fadeInUp;
96
+ animation-name: fadeInUp;
97
+ }
98
+ @-webkit-keyframes fadeInDown {
99
+ 0% {
100
+ opacity: 0;
101
+ -webkit-transform: translateY(-20px);
102
+ }
103
+ 100% {
104
+ opacity: 1;
105
+ -webkit-transform: translateY(0);
106
+ }
107
+ }
108
+ @-moz-keyframes fadeInDown {
109
+ 0% {
110
+ opacity: 0;
111
+ -moz-transform: translateY(-20px);
112
+ }
113
+ 100% {
114
+ opacity: 1;
115
+ -moz-transform: translateY(0);
116
+ }
117
+ }
118
+ @-o-keyframes fadeInDown {
119
+ 0% {
120
+ opacity: 0;
121
+ -ms-transform: translateY(-20px);
122
+ }
123
+ 100% {
124
+ opacity: 1;
125
+ -ms-transform: translateY(0);
126
+ }
127
+ }
128
+ @keyframes fadeInDown {
129
+ 0% {
130
+ opacity: 0;
131
+ transform: translateY(-20px);
132
+ }
133
+ 100% {
134
+ opacity: 1;
135
+ transform: translateY(0);
136
+ }
137
+ }
138
+ .fade-in-down {
139
+ -webkit-animation-name: fadeInDown;
140
+ -moz-animation-name: fadeInDown;
141
+ -o-animation-name: fadeInDown;
142
+ animation-name: fadeInDown;
143
+ }
144
+ @-webkit-keyframes fadeInRight {
145
+ 0% {
146
+ opacity: 0;
147
+ -webkit-transform: translateX(-20px);
148
+ }
149
+ 100% {
150
+ opacity: 1;
151
+ -webkit-transform: translateX(0);
152
+ }
153
+ }
154
+ @-moz-keyframes fadeInRight {
155
+ 0% {
156
+ opacity: 0;
157
+ -moz-transform: translateX(-20px);
158
+ }
159
+ 100% {
160
+ opacity: 1;
161
+ -moz-transform: translateX(0);
162
+ }
163
+ }
164
+ @-o-keyframes fadeInRight {
165
+ 0% {
166
+ opacity: 0;
167
+ -o-transform: translateX(-20px);
168
+ }
169
+ 100% {
170
+ opacity: 1;
171
+ -o-transform: translateX(0);
172
+ }
173
+ }
174
+ @keyframes fadeInRight {
175
+ 0% {
176
+ opacity: 0;
177
+ transform: translateX(-20px);
178
+ }
179
+ 100% {
180
+ opacity: 1;
181
+ transform: translateX(0);
182
+ }
183
+ }
184
+ .fade-in-right {
185
+ -webkit-animation-name: fadeInRight;
186
+ -moz-animation-name: fadeInRight;
187
+ -o-animation-name: fadeInRight;
188
+ animation-name: fadeInRight;
189
+ }
190
+ @-webkit-keyframes fadeInLeft {
191
+ 0% {
192
+ opacity: 0;
193
+ -webkit-transform: translateX(20px);
194
+ }
195
+ 100% {
196
+ opacity: 1;
197
+ -webkit-transform: translateX(0);
198
+ }
199
+ }
200
+ @-moz-keyframes fadeInLeft {
201
+ 0% {
202
+ opacity: 0;
203
+ -moz-transform: translateX(20px);
204
+ }
205
+ 100% {
206
+ opacity: 1;
207
+ -moz-transform: translateX(0);
208
+ }
209
+ }
210
+ @-o-keyframes fadeInLeft {
211
+ 0% {
212
+ opacity: 0;
213
+ -o-transform: translateX(20px);
214
+ }
215
+ 100% {
216
+ opacity: 1;
217
+ -o-transform: translateX(0);
218
+ }
219
+ }
220
+ @keyframes fadeInLeft {
221
+ 0% {
222
+ opacity: 0;
223
+ transform: translateX(20px);
224
+ }
225
+ 100% {
226
+ opacity: 1;
227
+ transform: translateX(0);
228
+ }
229
+ }
230
+ .fade-in-left {
231
+ -webkit-animation-name: fadeInLeft;
232
+ -moz-animation-name: fadeInLeft;
233
+ -o-animation-name: fadeInLeft;
234
+ animation-name: fadeInLeft;
235
+ }
236
+ div.hopscotch-bubble .hopscotch-nav-button {
237
+ /* borrowed from katy styles */
238
+ font-weight: bold;
239
+ border-width: 1px;
240
+ border-style: solid;
241
+ cursor: pointer;
242
+ margin: 0;
243
+ overflow: visible;
244
+ text-decoration: none !important;
245
+ width: auto;
246
+ padding: 0 10px;
247
+ height: 26px;
248
+ line-height: 24px;
249
+ font-size: 12px;
250
+ *zoom: 1;
251
+ white-space: nowrap;
252
+ display: -moz-inline-stack;
253
+ display: inline-block;
254
+ *vertical-align: auto;
255
+ zoom: 1;
256
+ *display: inline;
257
+ vertical-align: middle;
258
+ -moz-border-radius: 3px;
259
+ -ms-border-radius: 3px;
260
+ -o-border-radius: 3px;
261
+ -webkit-border-radius: 3px;
262
+ border-radius: 3px;
263
+ -webkit-box-sizing: border-box;
264
+ -moz-box-sizing: border-box;
265
+ box-sizing: border-box;
266
+ }
267
+ div.hopscotch-bubble .hopscotch-nav-button:hover {
268
+ *zoom: 1;
269
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
270
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
271
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
272
+ }
273
+ div.hopscotch-bubble .hopscotch-nav-button:active {
274
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25) inset;
275
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25) inset;
276
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25) inset;
277
+ }
278
+ div.hopscotch-bubble .hopscotch-nav-button.next {
279
+ border-color: #1b5480;
280
+ color: #fff;
281
+ margin: 0 0 0 10px;
282
+ /* HS specific*/
283
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
284
+ background-color: #287bbc;
285
+ filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#287bbc', endColorstr='#23639a');
286
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #287bbc), color-stop(100%, #23639a));
287
+ background-image: -webkit-linear-gradient(top, #287bbc 0%, #23639a 100%);
288
+ background-image: -moz-linear-gradient(top, #287bbc 0%, #23639a 100%);
289
+ background-image: -o-linear-gradient(top, #287bbc 0%, #23639a 100%);
290
+ background-image: linear-gradient(top, #287bbc 0%, #23639a 100%);
291
+ }
292
+ div.hopscotch-bubble .hopscotch-nav-button.next:hover {
293
+ background-color: #2672ae;
294
+ filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#2672ae', endColorstr='#1e4f7e');
295
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2672ae), color-stop(100%, #1e4f7e));
296
+ background-image: -webkit-linear-gradient(top, #2672ae 0%, #1e4f7e 100%);
297
+ background-image: -moz-linear-gradient(top, #2672ae 0%, #1e4f7e 100%);
298
+ background-image: -o-linear-gradient(top, #2672ae 0%, #1e4f7e 100%);
299
+ background-image: linear-gradient(top, #2672ae 0%, #1e4f7e 100%);
300
+ }
301
+ div.hopscotch-bubble .hopscotch-nav-button.prev {
302
+ border-color: #a7a7a7;
303
+ color: #444;
304
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
305
+ background-color: #f2f2f2;
306
+ filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f2f2f2', endColorstr='#e9e9e9');
307
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f2f2f2), color-stop(100%, #e9e9e9));
308
+ background-image: -webkit-linear-gradient(top, #f2f2f2 0%, #e9e9e9 100%);
309
+ background-image: -moz-linear-gradient(top, #f2f2f2 0%, #e9e9e9 100%);
310
+ background-image: -o-linear-gradient(top, #f2f2f2 0%, #e9e9e9 100%);
311
+ background-image: linear-gradient(top, #f2f2f2 0%, #e9e9e9 100%);
312
+ }
313
+ div.hopscotch-bubble .hopscotch-nav-button.prev:hover {
314
+ background-color: #e8e8e8;
315
+ filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE8E8E8', endColorstr='#FFA9A9A9');
316
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e8e8e8), color-stop(13%, #e3e3e3), color-stop(32%, #d7d7d7), color-stop(71%, #b9b9b9), color-stop(100%, #a9a9a9));
317
+ background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #e3e3e3 13%, #d7d7d7 32%, #b9b9b9 71%, #a9a9a9 100%);
318
+ background-image: -moz-linear-gradient(top, #e8e8e8 0%, #e3e3e3 13%, #d7d7d7 32%, #b9b9b9 71%, #a9a9a9 100%);
319
+ background-image: -o-linear-gradient(top, #e8e8e8 0%, #e3e3e3 13%, #d7d7d7 32%, #b9b9b9 71%, #a9a9a9 100%);
320
+ background-image: linear-gradient(top, #e8e8e8 0%, #e3e3e3 13%, #d7d7d7 32%, #b9b9b9 71%, #a9a9a9 100%);
321
+ }
322
+ div.hopscotch-bubble {
323
+ background-color: #ffffff;
324
+ color: #333;
325
+ font-family: Helvetica, Arial;
326
+ font-size: 13px;
327
+ position: absolute;
328
+ z-index: 999999;
329
+ -moz-background-clip: padding;
330
+ /* for Mozilla browsers*/
331
+ -webkit-background-clip: padding;
332
+ /* Webkit */
333
+ background-clip: padding-box;
334
+ /* browsers with full support */
335
+ box-shadow:1px 1px 2px rgba(0, 0, 0, 0.2);
336
+ }
337
+ div.hopscotch-bubble.animate {
338
+ -moz-transition-property: top, left;
339
+ -moz-transition-duration: 1s;
340
+ -moz-transition-timing-function: ease-in-out;
341
+ -ms-transition-property: top, left;
342
+ -ms-transition-duration: 1s;
343
+ -ms-transition-timing-function: ease-in-out;
344
+ -o-transition-property: top, left;
345
+ -o-transition-duration: 1s;
346
+ -o-transition-timing-function: ease-in-out;
347
+ -webkit-transition-property: top, left;
348
+ -webkit-transition-duration: 1s;
349
+ -webkit-transition-timing-function: ease-in-out;
350
+ transition-property: top, left;
351
+ transition-duration: 1s;
352
+ transition-timing-function: ease-in-out;
353
+ }
354
+ div.hopscotch-bubble.invisible {
355
+ opacity: 0;
356
+ }
357
+ div.hopscotch-bubble.hide,
358
+ div.hopscotch-bubble .hide,
359
+ div.hopscotch-bubble .hide-all {
360
+ display: none;
361
+ }
362
+ div.hopscotch-bubble h3 {
363
+ color: #5d5f63;
364
+ font-family: 'Source Sans Pro',Arial,sans-serif;
365
+ font-size: 20px;
366
+ font-weight: normal;
367
+ line-height: 19px;
368
+ margin: -1px 15px 0 0;
369
+ padding: 0;
370
+ }
371
+ div.hopscotch-bubble .hopscotch-bubble-container {
372
+ padding: 15px;
373
+ position: relative;
374
+ text-align: left;
375
+ -webkit-font-smoothing: antialiased;
376
+ /* to fix text flickering */
377
+ }
378
+ div.hopscotch-bubble .hopscotch-content {
379
+ font-family: 'Open Sans',sans-serif;
380
+ font-size: 13px;
381
+ color:#5d5f63;
382
+ font-weight: normal;
383
+ line-height: 17px;
384
+ margin: -5px 0 11px;
385
+ padding-top: 20px;
386
+ }
387
+ div.hopscotch-bubble .hopscotch-bubble-content {
388
+ /*margin: 0 0 0 40px;*/
389
+ }
390
+ div.hopscotch-bubble.no-number .hopscotch-bubble-content {
391
+ margin: 0;
392
+ }
393
+ div.hopscotch-bubble .hopscotch-bubble-close {
394
+ color: #000;
395
+ display: block;
396
+ padding: 8px;
397
+ position: absolute;
398
+ text-decoration: none;
399
+ text-indent: -9999px;
400
+ width: 8px;
401
+ height: 8px;
402
+ top: 0;
403
+ right: 0;
404
+ }
405
+ div.hopscotch-bubble .hopscotch-bubble-close.hide,
406
+ div.hopscotch-bubble .hopscotch-bubble-close.hide-all {
407
+ display: none;
408
+ }
409
+ div.hopscotch-bubble .hopscotch-bubble-number {
410
+ color: #fff;
411
+ display: block;
412
+ float: left;
413
+ font-size: 17px;
414
+ font-weight: bold;
415
+ line-height: 31px;
416
+ padding: 0 10px 0 0;
417
+ text-align: center;
418
+ width: 30px;
419
+ height: 30px;
420
+ display: none;
421
+ }
422
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container {
423
+ position: absolute;
424
+ width: 34px;
425
+ height: 34px;
426
+ }
427
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container .hopscotch-bubble-arrow,
428
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container .hopscotch-bubble-arrow-border {
429
+ width: 0;
430
+ height: 0;
431
+ }
432
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container.up {
433
+ top: -22px;
434
+ left: 10px;
435
+ }
436
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container.up .hopscotch-bubble-arrow {
437
+ border-bottom: 17px solid #ffffff;
438
+ border-left: 17px solid transparent;
439
+ border-right: 17px solid transparent;
440
+ position: relative;
441
+ top: -10px;
442
+ }
443
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container.up .hopscotch-bubble-arrow-border {
444
+ border-bottom: 17px solid #000000;
445
+ border-bottom: 17px solid rgba(0, 0, 0, 0.5);
446
+ border-left: 17px solid transparent;
447
+ border-right: 17px solid transparent;
448
+ }
449
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container.down {
450
+ bottom: -39px;
451
+ left: 10px;
452
+ }
453
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container.down .hopscotch-bubble-arrow {
454
+ border-top: 17px solid #ffffff;
455
+ border-left: 17px solid transparent;
456
+ border-right: 17px solid transparent;
457
+ position: relative;
458
+ top: -24px;
459
+ }
460
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container.down .hopscotch-bubble-arrow-border {
461
+ border-top: 17px solid #000000;
462
+ border-top: 17px solid rgba(0, 0, 0, 0.5);
463
+ border-left: 17px solid transparent;
464
+ border-right: 17px solid transparent;
465
+ }
466
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container.left {
467
+ top: 10px;
468
+ left: -22px;
469
+ }
470
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container.left .hopscotch-bubble-arrow {
471
+ border-bottom: 17px solid transparent;
472
+ border-right: 17px solid #ffffff;
473
+ border-top: 17px solid transparent;
474
+ position: relative;
475
+ left: 7px;
476
+ top: 0px;
477
+ }
478
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container.left .hopscotch-bubble-arrow-border {
479
+ border-right: 34px solid #000000;
480
+ border-right: 34px solid rgba(0, 0, 0, 0.5);
481
+ }
482
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container.right {
483
+ top: 10px;
484
+ right: -39px;
485
+ }
486
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container.right .hopscotch-bubble-arrow {
487
+ border-bottom: 17px solid transparent;
488
+ border-left: 17px solid #ffffff;
489
+ border-top: 17px solid transparent;
490
+ position: relative;
491
+ left: -7px;
492
+ top: -34px;
493
+ }
494
+ div.hopscotch-bubble .hopscotch-bubble-arrow-container.right .hopscotch-bubble-arrow-border {
495
+ border-left: 17px solid #000000;
496
+ border-left: 17px solid rgba(0, 0, 0, 0.5);
497
+ border-bottom: 17px solid transparent;
498
+ border-top: 17px solid transparent;
499
+ }
500
+ div.hopscotch-bubble .hopscotch-actions {
501
+ margin: 10px 0 0;
502
+ text-align: right;
503
+ }
504
+ /* Overlay styles */
505
+ div.hopscotch-overlay {
506
+ position: absolute;
507
+ opacity: .3;
508
+ background-color: #000;
509
+ }
510
+ div.hopscotch-overlay.hide {
511
+ display: none;
512
+ }