From c4e02319a117c945982ddd6700e9310e28179a3b Mon Sep 17 00:00:00 2001 From: James Foster <38274066+jd-foster@users.noreply.github.com> Date: Tue, 17 Sep 2024 14:36:57 +1000 Subject: [PATCH 1/2] Add 'todo' field --- assets/html/scss/documenter-dark.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/html/scss/documenter-dark.scss b/assets/html/scss/documenter-dark.scss index 8e111b9d0b..59fdbbb19a 100644 --- a/assets/html/scss/documenter-dark.scss +++ b/assets/html/scss/documenter-dark.scss @@ -37,7 +37,7 @@ $admonition-default: $grey-lighter; $admonition-background: ( 'default': $background, 'info': $background, 'success': $background, 'warning': $background, - 'danger': $background, 'compat': $background + 'danger': $background, 'compat': $background, 'todo', $background ); // These would normally get initialized in _admonition.scss. However, since we are not // loading it on the top level, we need to set them here too to avoid deprecation warnings. From 990ac593de573a072bfcbd45e71b158563e434d7 Mon Sep 17 00:00:00 2001 From: James Foster <38274066+jd-foster@users.noreply.github.com> Date: Wed, 18 Sep 2024 10:27:54 +1000 Subject: [PATCH 2/2] Fix typo --- assets/html/scss/documenter-dark.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/html/scss/documenter-dark.scss b/assets/html/scss/documenter-dark.scss index 59fdbbb19a..692edd64b9 100644 --- a/assets/html/scss/documenter-dark.scss +++ b/assets/html/scss/documenter-dark.scss @@ -37,7 +37,7 @@ $admonition-default: $grey-lighter; $admonition-background: ( 'default': $background, 'info': $background, 'success': $background, 'warning': $background, - 'danger': $background, 'compat': $background, 'todo', $background + 'danger': $background, 'compat': $background, 'todo': $background ); // These would normally get initialized in _admonition.scss. However, since we are not // loading it on the top level, we need to set them here too to avoid deprecation warnings.