Update to reveal.js 4.1.2 (#136)
- New tools/ script to manually keep step for updates
- Plugins are all updated
- Template update following latest Pandoc version
- updated README for documentation
- Help page updated
- See other change in NEWS file
diff --git a/inst/reveal.js-4.1.2/plugin/customcontrols/style.css b/inst/reveal.js-4.1.2/plugin/customcontrols/style.css
new file mode 100644
index 0000000..df77d60
--- /dev/null
+++ b/inst/reveal.js-4.1.2/plugin/customcontrols/style.css
@@ -0,0 +1,62 @@
+#customcontrols {
+ z-index: 40;
+ position: fixed;
+ left: 70px;
+ bottom: 30px;
+ text-align: center;
+ font-size: 24px;
+}
+
+#customcontrols button {
+ background: none;
+ color: var(--r-link-color);
+ border: none;
+ padding: 0;
+ font: inherit;
+ cursor: pointer;
+ outline: inherit;
+ z-index: 40;
+}
+
+#customcontrols button:hover {
+ color: var(--r-link-color-hover);
+}
+
+#customcontrols > ul {
+ position: fixed;
+ left: 54px;
+ bottom: 64px;
+ list-style-type: none;
+ overflow: hidden;
+ margin: 0;
+ padding: 0;
+ border: 1px solid var(--r-link-color);
+ border-radius: 5px;
+ padding: 10px;
+ background-color: var(--r-background-color)
+}
+
+#customcontrols ul > li {
+ margin: 0px 5px;
+ padding: 0px 5px;
+ float: left;
+}
+
+#customcontrols.collapsed #collapse-customcontrols, #customcontrols.collapsed > ul {
+ display: none;
+}
+
+#customcontrols:not(.collapsed) #expand-customcontrols {
+ display: none;
+}
+
+@media only screen and (min-width: 500px) {
+ #customcontrols > button {
+ display: none;
+ }
+ #customcontrols > ul {
+ bottom: 20px;
+ border: none;
+ background: none;
+ }
+}