reveal-ck 3.8.1 → 3.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/files/reveal.js/Gruntfile.js +41 -40
  3. data/files/reveal.js/LICENSE +1 -1
  4. data/files/reveal.js/README.md +189 -107
  5. data/files/reveal.js/bower.json +2 -2
  6. data/files/reveal.js/css/print/pdf.css +10 -18
  7. data/files/reveal.js/css/reveal.css +344 -140
  8. data/files/reveal.js/css/reveal.scss +371 -76
  9. data/files/reveal.js/css/theme/README.md +2 -2
  10. data/files/reveal.js/css/theme/beige.css +19 -38
  11. data/files/reveal.js/css/theme/black.css +19 -38
  12. data/files/reveal.js/css/theme/blood.css +19 -38
  13. data/files/reveal.js/css/theme/league.css +19 -38
  14. data/files/reveal.js/css/theme/moon.css +19 -38
  15. data/files/reveal.js/css/theme/night.css +19 -38
  16. data/files/reveal.js/css/theme/serif.css +19 -38
  17. data/files/reveal.js/css/theme/simple.css +19 -38
  18. data/files/reveal.js/css/theme/sky.css +19 -38
  19. data/files/reveal.js/css/theme/solarized.css +19 -38
  20. data/files/reveal.js/css/theme/template/theme.scss +18 -45
  21. data/files/reveal.js/css/theme/white.css +19 -38
  22. data/files/reveal.js/demo.html +13 -7
  23. data/files/reveal.js/js/reveal.js +707 -242
  24. data/files/reveal.js/lib/js/head.min.js +1 -4
  25. data/files/reveal.js/package.json +16 -17
  26. data/files/reveal.js/plugin/highlight/highlight.js +3 -4
  27. data/files/reveal.js/plugin/markdown/example.html +7 -0
  28. data/files/reveal.js/plugin/markdown/example.md +5 -0
  29. data/files/reveal.js/plugin/markdown/markdown.js +1 -1
  30. data/files/reveal.js/plugin/math/math.js +4 -4
  31. data/files/reveal.js/plugin/multiplex/master.js +4 -1
  32. data/files/reveal.js/plugin/multiplex/package.json +1 -1
  33. data/files/reveal.js/plugin/notes/notes.html +48 -2
  34. data/files/reveal.js/plugin/notes/notes.js +9 -17
  35. data/files/reveal.js/plugin/print-pdf/print-pdf.js +9 -11
  36. data/files/reveal.js/plugin/search/search.js +127 -117
  37. data/files/reveal.js/plugin/zoom-js/zoom.js +16 -32
  38. data/files/reveal.js/test/qunit-2.5.0.css +436 -0
  39. data/files/reveal.js/test/qunit-2.5.0.js +5188 -0
  40. data/files/reveal.js/test/test-markdown-element-attributes.html +2 -2
  41. data/files/reveal.js/test/test-markdown-element-attributes.js +21 -23
  42. data/files/reveal.js/test/test-markdown-external.html +3 -3
  43. data/files/reveal.js/test/test-markdown-external.js +7 -11
  44. data/files/reveal.js/test/test-markdown-options.html +2 -2
  45. data/files/reveal.js/test/test-markdown-options.js +7 -6
  46. data/files/reveal.js/test/test-markdown-slide-attributes.html +2 -2
  47. data/files/reveal.js/test/test-markdown-slide-attributes.js +23 -26
  48. data/files/reveal.js/test/test-markdown.html +2 -2
  49. data/files/reveal.js/test/test-markdown.js +2 -6
  50. data/files/reveal.js/test/test-pdf.html +2 -2
  51. data/files/reveal.js/test/test-pdf.js +2 -5
  52. data/files/reveal.js/test/test.html +2 -2
  53. data/files/reveal.js/test/test.js +184 -188
  54. data/lib/reveal-ck/version.rb +1 -1
  55. metadata +4 -4
  56. data/files/reveal.js/test/qunit-1.12.0.css +0 -244
  57. data/files/reveal.js/test/qunit-1.12.0.js +0 -2212
@@ -1,10 +1,10 @@
1
1
  ## Dependencies
2
2
 
3
- Themes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#full-setup
3
+ Themes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceeding: https://github.com/hakimel/reveal.js#full-setup
4
4
 
5
5
  ## Creating a Theme
6
6
 
7
- To create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `grunt css-themes`.
7
+ To create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `npm run build -- css-themes`.
8
8
 
9
9
  Each theme file does four things in the following order:
10
10
 
@@ -34,8 +34,8 @@ body {
34
34
  background: rgba(79, 64, 28, 0.99);
35
35
  text-shadow: none; }
36
36
 
37
- .reveal .slides > section,
38
- .reveal .slides > section > section {
37
+ .reveal .slides section,
38
+ .reveal .slides section > section {
39
39
  line-height: 1.3;
40
40
  font-weight: inherit; }
41
41
 
@@ -126,10 +126,6 @@ body {
126
126
  .reveal dd {
127
127
  margin-left: 40px; }
128
128
 
129
- .reveal q,
130
- .reveal blockquote {
131
- quotes: none; }
132
-
133
129
  .reveal blockquote {
134
130
  display: block;
135
131
  position: relative;
@@ -160,7 +156,8 @@ body {
160
156
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
161
157
 
162
158
  .reveal code {
163
- font-family: monospace; }
159
+ font-family: monospace;
160
+ text-transform: none; }
164
161
 
165
162
  .reveal pre code {
166
163
  display: block;
@@ -196,10 +193,12 @@ body {
196
193
  border-bottom: none; }
197
194
 
198
195
  .reveal sup {
199
- vertical-align: super; }
196
+ vertical-align: super;
197
+ font-size: smaller; }
200
198
 
201
199
  .reveal sub {
202
- vertical-align: sub; }
200
+ vertical-align: sub;
201
+ font-size: smaller; }
203
202
 
204
203
  .reveal small {
205
204
  display: inline-block;
@@ -255,42 +254,24 @@ body {
255
254
  /*********************************************
256
255
  * NAVIGATION CONTROLS
257
256
  *********************************************/
258
- .reveal .controls .navigate-left,
259
- .reveal .controls .navigate-left.enabled {
260
- border-right-color: #8b743d; }
261
-
262
- .reveal .controls .navigate-right,
263
- .reveal .controls .navigate-right.enabled {
264
- border-left-color: #8b743d; }
265
-
266
- .reveal .controls .navigate-up,
267
- .reveal .controls .navigate-up.enabled {
268
- border-bottom-color: #8b743d; }
269
-
270
- .reveal .controls .navigate-down,
271
- .reveal .controls .navigate-down.enabled {
272
- border-top-color: #8b743d; }
273
-
274
- .reveal .controls .navigate-left.enabled:hover {
275
- border-right-color: #c0a86e; }
276
-
277
- .reveal .controls .navigate-right.enabled:hover {
278
- border-left-color: #c0a86e; }
279
-
280
- .reveal .controls .navigate-up.enabled:hover {
281
- border-bottom-color: #c0a86e; }
282
-
283
- .reveal .controls .navigate-down.enabled:hover {
284
- border-top-color: #c0a86e; }
257
+ .reveal .controls {
258
+ color: #8b743d; }
285
259
 
286
260
  /*********************************************
287
261
  * PROGRESS BAR
288
262
  *********************************************/
289
263
  .reveal .progress {
290
- background: rgba(0, 0, 0, 0.2); }
264
+ background: rgba(0, 0, 0, 0.2);
265
+ color: #8b743d; }
291
266
 
292
267
  .reveal .progress span {
293
- background: #8b743d;
294
268
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
295
269
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
296
270
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
271
+
272
+ /*********************************************
273
+ * PRINT BACKGROUND
274
+ *********************************************/
275
+ @media print {
276
+ .backgrounds {
277
+ background-color: #f7f3de; } }
@@ -30,8 +30,8 @@ body {
30
30
  background: #bee4fd;
31
31
  text-shadow: none; }
32
32
 
33
- .reveal .slides > section,
34
- .reveal .slides > section > section {
33
+ .reveal .slides section,
34
+ .reveal .slides section > section {
35
35
  line-height: 1.3;
36
36
  font-weight: inherit; }
37
37
 
@@ -122,10 +122,6 @@ body {
122
122
  .reveal dd {
123
123
  margin-left: 40px; }
124
124
 
125
- .reveal q,
126
- .reveal blockquote {
127
- quotes: none; }
128
-
129
125
  .reveal blockquote {
130
126
  display: block;
131
127
  position: relative;
@@ -156,7 +152,8 @@ body {
156
152
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
157
153
 
158
154
  .reveal code {
159
- font-family: monospace; }
155
+ font-family: monospace;
156
+ text-transform: none; }
160
157
 
161
158
  .reveal pre code {
162
159
  display: block;
@@ -192,10 +189,12 @@ body {
192
189
  border-bottom: none; }
193
190
 
194
191
  .reveal sup {
195
- vertical-align: super; }
192
+ vertical-align: super;
193
+ font-size: smaller; }
196
194
 
197
195
  .reveal sub {
198
- vertical-align: sub; }
196
+ vertical-align: sub;
197
+ font-size: smaller; }
199
198
 
200
199
  .reveal small {
201
200
  display: inline-block;
@@ -251,42 +250,24 @@ body {
251
250
  /*********************************************
252
251
  * NAVIGATION CONTROLS
253
252
  *********************************************/
254
- .reveal .controls .navigate-left,
255
- .reveal .controls .navigate-left.enabled {
256
- border-right-color: #42affa; }
257
-
258
- .reveal .controls .navigate-right,
259
- .reveal .controls .navigate-right.enabled {
260
- border-left-color: #42affa; }
261
-
262
- .reveal .controls .navigate-up,
263
- .reveal .controls .navigate-up.enabled {
264
- border-bottom-color: #42affa; }
265
-
266
- .reveal .controls .navigate-down,
267
- .reveal .controls .navigate-down.enabled {
268
- border-top-color: #42affa; }
269
-
270
- .reveal .controls .navigate-left.enabled:hover {
271
- border-right-color: #8dcffc; }
272
-
273
- .reveal .controls .navigate-right.enabled:hover {
274
- border-left-color: #8dcffc; }
275
-
276
- .reveal .controls .navigate-up.enabled:hover {
277
- border-bottom-color: #8dcffc; }
278
-
279
- .reveal .controls .navigate-down.enabled:hover {
280
- border-top-color: #8dcffc; }
253
+ .reveal .controls {
254
+ color: #42affa; }
281
255
 
282
256
  /*********************************************
283
257
  * PROGRESS BAR
284
258
  *********************************************/
285
259
  .reveal .progress {
286
- background: rgba(0, 0, 0, 0.2); }
260
+ background: rgba(0, 0, 0, 0.2);
261
+ color: #42affa; }
287
262
 
288
263
  .reveal .progress span {
289
- background: #42affa;
290
264
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
291
265
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
292
266
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
267
+
268
+ /*********************************************
269
+ * PRINT BACKGROUND
270
+ *********************************************/
271
+ @media print {
272
+ .backgrounds {
273
+ background-color: #222; } }
@@ -33,8 +33,8 @@ body {
33
33
  background: #a23;
34
34
  text-shadow: none; }
35
35
 
36
- .reveal .slides > section,
37
- .reveal .slides > section > section {
36
+ .reveal .slides section,
37
+ .reveal .slides section > section {
38
38
  line-height: 1.3;
39
39
  font-weight: inherit; }
40
40
 
@@ -125,10 +125,6 @@ body {
125
125
  .reveal dd {
126
126
  margin-left: 40px; }
127
127
 
128
- .reveal q,
129
- .reveal blockquote {
130
- quotes: none; }
131
-
132
128
  .reveal blockquote {
133
129
  display: block;
134
130
  position: relative;
@@ -159,7 +155,8 @@ body {
159
155
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
160
156
 
161
157
  .reveal code {
162
- font-family: monospace; }
158
+ font-family: monospace;
159
+ text-transform: none; }
163
160
 
164
161
  .reveal pre code {
165
162
  display: block;
@@ -195,10 +192,12 @@ body {
195
192
  border-bottom: none; }
196
193
 
197
194
  .reveal sup {
198
- vertical-align: super; }
195
+ vertical-align: super;
196
+ font-size: smaller; }
199
197
 
200
198
  .reveal sub {
201
- vertical-align: sub; }
199
+ vertical-align: sub;
200
+ font-size: smaller; }
202
201
 
203
202
  .reveal small {
204
203
  display: inline-block;
@@ -254,46 +253,28 @@ body {
254
253
  /*********************************************
255
254
  * NAVIGATION CONTROLS
256
255
  *********************************************/
257
- .reveal .controls .navigate-left,
258
- .reveal .controls .navigate-left.enabled {
259
- border-right-color: #a23; }
260
-
261
- .reveal .controls .navigate-right,
262
- .reveal .controls .navigate-right.enabled {
263
- border-left-color: #a23; }
264
-
265
- .reveal .controls .navigate-up,
266
- .reveal .controls .navigate-up.enabled {
267
- border-bottom-color: #a23; }
268
-
269
- .reveal .controls .navigate-down,
270
- .reveal .controls .navigate-down.enabled {
271
- border-top-color: #a23; }
272
-
273
- .reveal .controls .navigate-left.enabled:hover {
274
- border-right-color: #dd5566; }
275
-
276
- .reveal .controls .navigate-right.enabled:hover {
277
- border-left-color: #dd5566; }
278
-
279
- .reveal .controls .navigate-up.enabled:hover {
280
- border-bottom-color: #dd5566; }
281
-
282
- .reveal .controls .navigate-down.enabled:hover {
283
- border-top-color: #dd5566; }
256
+ .reveal .controls {
257
+ color: #a23; }
284
258
 
285
259
  /*********************************************
286
260
  * PROGRESS BAR
287
261
  *********************************************/
288
262
  .reveal .progress {
289
- background: rgba(0, 0, 0, 0.2); }
263
+ background: rgba(0, 0, 0, 0.2);
264
+ color: #a23; }
290
265
 
291
266
  .reveal .progress span {
292
- background: #a23;
293
267
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
294
268
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
295
269
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
296
270
 
271
+ /*********************************************
272
+ * PRINT BACKGROUND
273
+ *********************************************/
274
+ @media print {
275
+ .backgrounds {
276
+ background-color: #222; } }
277
+
297
278
  .reveal p {
298
279
  font-weight: 300;
299
280
  text-shadow: 1px 1px #222; }
@@ -36,8 +36,8 @@ body {
36
36
  background: #FF5E99;
37
37
  text-shadow: none; }
38
38
 
39
- .reveal .slides > section,
40
- .reveal .slides > section > section {
39
+ .reveal .slides section,
40
+ .reveal .slides section > section {
41
41
  line-height: 1.3;
42
42
  font-weight: inherit; }
43
43
 
@@ -128,10 +128,6 @@ body {
128
128
  .reveal dd {
129
129
  margin-left: 40px; }
130
130
 
131
- .reveal q,
132
- .reveal blockquote {
133
- quotes: none; }
134
-
135
131
  .reveal blockquote {
136
132
  display: block;
137
133
  position: relative;
@@ -162,7 +158,8 @@ body {
162
158
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
163
159
 
164
160
  .reveal code {
165
- font-family: monospace; }
161
+ font-family: monospace;
162
+ text-transform: none; }
166
163
 
167
164
  .reveal pre code {
168
165
  display: block;
@@ -198,10 +195,12 @@ body {
198
195
  border-bottom: none; }
199
196
 
200
197
  .reveal sup {
201
- vertical-align: super; }
198
+ vertical-align: super;
199
+ font-size: smaller; }
202
200
 
203
201
  .reveal sub {
204
- vertical-align: sub; }
202
+ vertical-align: sub;
203
+ font-size: smaller; }
205
204
 
206
205
  .reveal small {
207
206
  display: inline-block;
@@ -257,42 +256,24 @@ body {
257
256
  /*********************************************
258
257
  * NAVIGATION CONTROLS
259
258
  *********************************************/
260
- .reveal .controls .navigate-left,
261
- .reveal .controls .navigate-left.enabled {
262
- border-right-color: #13DAEC; }
263
-
264
- .reveal .controls .navigate-right,
265
- .reveal .controls .navigate-right.enabled {
266
- border-left-color: #13DAEC; }
267
-
268
- .reveal .controls .navigate-up,
269
- .reveal .controls .navigate-up.enabled {
270
- border-bottom-color: #13DAEC; }
271
-
272
- .reveal .controls .navigate-down,
273
- .reveal .controls .navigate-down.enabled {
274
- border-top-color: #13DAEC; }
275
-
276
- .reveal .controls .navigate-left.enabled:hover {
277
- border-right-color: #71e9f4; }
278
-
279
- .reveal .controls .navigate-right.enabled:hover {
280
- border-left-color: #71e9f4; }
281
-
282
- .reveal .controls .navigate-up.enabled:hover {
283
- border-bottom-color: #71e9f4; }
284
-
285
- .reveal .controls .navigate-down.enabled:hover {
286
- border-top-color: #71e9f4; }
259
+ .reveal .controls {
260
+ color: #13DAEC; }
287
261
 
288
262
  /*********************************************
289
263
  * PROGRESS BAR
290
264
  *********************************************/
291
265
  .reveal .progress {
292
- background: rgba(0, 0, 0, 0.2); }
266
+ background: rgba(0, 0, 0, 0.2);
267
+ color: #13DAEC; }
293
268
 
294
269
  .reveal .progress span {
295
- background: #13DAEC;
296
270
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
297
271
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
298
272
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
273
+
274
+ /*********************************************
275
+ * PRINT BACKGROUND
276
+ *********************************************/
277
+ @media print {
278
+ .backgrounds {
279
+ background-color: #2b2b2b; } }
@@ -34,8 +34,8 @@ body {
34
34
  background: #d33682;
35
35
  text-shadow: none; }
36
36
 
37
- .reveal .slides > section,
38
- .reveal .slides > section > section {
37
+ .reveal .slides section,
38
+ .reveal .slides section > section {
39
39
  line-height: 1.3;
40
40
  font-weight: inherit; }
41
41
 
@@ -126,10 +126,6 @@ body {
126
126
  .reveal dd {
127
127
  margin-left: 40px; }
128
128
 
129
- .reveal q,
130
- .reveal blockquote {
131
- quotes: none; }
132
-
133
129
  .reveal blockquote {
134
130
  display: block;
135
131
  position: relative;
@@ -160,7 +156,8 @@ body {
160
156
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
161
157
 
162
158
  .reveal code {
163
- font-family: monospace; }
159
+ font-family: monospace;
160
+ text-transform: none; }
164
161
 
165
162
  .reveal pre code {
166
163
  display: block;
@@ -196,10 +193,12 @@ body {
196
193
  border-bottom: none; }
197
194
 
198
195
  .reveal sup {
199
- vertical-align: super; }
196
+ vertical-align: super;
197
+ font-size: smaller; }
200
198
 
201
199
  .reveal sub {
202
- vertical-align: sub; }
200
+ vertical-align: sub;
201
+ font-size: smaller; }
203
202
 
204
203
  .reveal small {
205
204
  display: inline-block;
@@ -255,42 +254,24 @@ body {
255
254
  /*********************************************
256
255
  * NAVIGATION CONTROLS
257
256
  *********************************************/
258
- .reveal .controls .navigate-left,
259
- .reveal .controls .navigate-left.enabled {
260
- border-right-color: #268bd2; }
261
-
262
- .reveal .controls .navigate-right,
263
- .reveal .controls .navigate-right.enabled {
264
- border-left-color: #268bd2; }
265
-
266
- .reveal .controls .navigate-up,
267
- .reveal .controls .navigate-up.enabled {
268
- border-bottom-color: #268bd2; }
269
-
270
- .reveal .controls .navigate-down,
271
- .reveal .controls .navigate-down.enabled {
272
- border-top-color: #268bd2; }
273
-
274
- .reveal .controls .navigate-left.enabled:hover {
275
- border-right-color: #78b9e6; }
276
-
277
- .reveal .controls .navigate-right.enabled:hover {
278
- border-left-color: #78b9e6; }
279
-
280
- .reveal .controls .navigate-up.enabled:hover {
281
- border-bottom-color: #78b9e6; }
282
-
283
- .reveal .controls .navigate-down.enabled:hover {
284
- border-top-color: #78b9e6; }
257
+ .reveal .controls {
258
+ color: #268bd2; }
285
259
 
286
260
  /*********************************************
287
261
  * PROGRESS BAR
288
262
  *********************************************/
289
263
  .reveal .progress {
290
- background: rgba(0, 0, 0, 0.2); }
264
+ background: rgba(0, 0, 0, 0.2);
265
+ color: #268bd2; }
291
266
 
292
267
  .reveal .progress span {
293
- background: #268bd2;
294
268
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
295
269
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
296
270
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
271
+
272
+ /*********************************************
273
+ * PRINT BACKGROUND
274
+ *********************************************/
275
+ @media print {
276
+ .backgrounds {
277
+ background-color: #002b36; } }