summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2020-09-14 16:47:59 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-16 18:14:08 +0100
commit277e99f7c6a635bcbd8e885c6cad381de91f079c (patch)
treebfdc4fa050acee2629bf756888581767e50a7568 /bitbake
parente3b76c8fc370833a623791cec6e805158d35e9d1 (diff)
downloadpoky-277e99f7c6a635bcbd8e885c6cad381de91f079c.tar.gz
bitbake: sphinx: update style for important, caution and warnings
The initial theme override covers for tip and and note only. (Bitbake rev: 99ba6fe98b9c7c4dbe70dce63c478c167c10d91a) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/doc/sphinx-static/theme_overrides.css13
1 files changed, 11 insertions, 2 deletions
diff --git a/bitbake/doc/sphinx-static/theme_overrides.css b/bitbake/doc/sphinx-static/theme_overrides.css
index adf0eb81b8..9685bca338 100644
--- a/bitbake/doc/sphinx-static/theme_overrides.css
+++ b/bitbake/doc/sphinx-static/theme_overrides.css
@@ -115,12 +115,21 @@ h6 {
115 } 115 }
116 116
117 /* Admonition should be gray, not blue or green */ 117 /* Admonition should be gray, not blue or green */
118 .rst-content .note .admonition-title, .rst-content .tip .admonition-title { 118 .rst-content .note .admonition-title,
119 .rst-content .tip .admonition-title,
120 .rst-content .warning .admonition-title,
121 .rst-content .caution .admonition-title,
122 .rst-content .important .admonition-title {
119 background: #f0f0f2; 123 background: #f0f0f2;
120 color: #00557D; 124 color: #00557D;
121 125
122 } 126 }
123 .rst-content .note, .rst-content .tip { 127
128 .rst-content .note,
129 .rst-content .tip,
130 .rst-content .important,
131 .rst-content .warning,
132 .rst-content .caution {
124 background: #f0f0f2; 133 background: #f0f0f2;
125 } 134 }
126 135