Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/package/src/common/patches/revealjs-theme-0002-input-panel-bg.patch
6460 views
1
diff --git a/src/resources/formats/revealjs/themes/blood.scss b/src/resources/formats/revealjs/themes/blood.scss
2
index fe4addaf4..28f7b9455 100644
3
--- a/src/resources/formats/revealjs/themes/blood.scss
4
+++ b/src/resources/formats/revealjs/themes/blood.scss
5
@@ -50,6 +50,9 @@ $link-color: $blood !default;
6
$selection-bg: $link-color !default;
7
$selection-color: #fff !default;
8
9
+// input panel
10
+$input-panel-bg: rgba(233, 236, 239, 0.2) !default;
11
+
12
/*-- scss:rules --*/
13
14
.reveal p {
15
diff --git a/src/resources/formats/revealjs/themes/league.scss b/src/resources/formats/revealjs/themes/league.scss
16
index 476b6c7da..3005e6c1e 100644
17
--- a/src/resources/formats/revealjs/themes/league.scss
18
+++ b/src/resources/formats/revealjs/themes/league.scss
19
@@ -36,6 +36,9 @@ $presentation-heading-text-transform: uppercase !default;
20
// Change text colors against light slide backgrounds
21
$light-bg-text-color: #222 !default;
22
23
+// input panel
24
+$input-panel-bg: rgba(233, 236, 239, 0.2) !default;
25
+
26
/*-- scss:mixins --*/
27
28
// Background generator
29
diff --git a/src/resources/formats/revealjs/themes/moon.scss b/src/resources/formats/revealjs/themes/moon.scss
30
index 0e0cc8ccb..21ca22fab 100644
31
--- a/src/resources/formats/revealjs/themes/moon.scss
32
+++ b/src/resources/formats/revealjs/themes/moon.scss
33
@@ -50,3 +50,6 @@ $presentation-heading-font: "League Gothic", sans-serif !default; // from settin
34
35
// Change text colors against light slide backgrounds
36
$light-bg-text-color: #222 !default;
37
+
38
+// input panel
39
+$input-panel-bg: rgba(233, 236, 239, 0.2) !default;
40
diff --git a/src/resources/formats/revealjs/themes/night.scss b/src/resources/formats/revealjs/themes/night.scss
41
index 34703523a..9d84bbf86 100644
42
--- a/src/resources/formats/revealjs/themes/night.scss
43
+++ b/src/resources/formats/revealjs/themes/night.scss
44
@@ -27,3 +27,6 @@ $selection-bg: #e7ad52 !default;
45
46
// Change text colors against light slide backgrounds
47
$light-bg-text-color: #222 !default;
48
+
49
+// input panel
50
+$input-panel-bg: rgba(233, 236, 239, 0.2) !default;
51
52