From ac5883e32f6864820a6f1492784db338aa69d933 Mon Sep 17 00:00:00 2001 From: gregswinehart Date: Tue, 12 Aug 2025 18:22:19 -0700 Subject: [PATCH 1/2] Slight "supported by Posit" badge color tweaks --- _quarto.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/_quarto.yml b/_quarto.yml index 5c4fbf884..ab3f52c66 100644 --- a/_quarto.yml +++ b/_quarto.yml @@ -685,8 +685,11 @@ format: include-in-header: - text: | include-after-body: js.html From 6e02ba1ba25120d6a93c4fd01a324258928bab67 Mon Sep 17 00:00:00 2001 From: Greg Swinehart Date: Tue, 12 Aug 2025 18:35:44 -0700 Subject: [PATCH 2/2] hover behavior for supported by Posit --- theme-dark.scss | 6 ++++++ theme.scss | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/theme-dark.scss b/theme-dark.scss index 821d8f481..1fbbcfe12 100644 --- a/theme-dark.scss +++ b/theme-dark.scss @@ -184,4 +184,10 @@ details > summary { img.footer-logo { color: #ffffff; +} + +/* Supported by Posit badge in navbar */ + +body.quarto-dark #supported-by-posit:hover { + background-color: #2C2C2D; } \ No newline at end of file diff --git a/theme.scss b/theme.scss index 7fc6e8377..9c17f9746 100644 --- a/theme.scss +++ b/theme.scss @@ -43,3 +43,10 @@ $text-muted: #6a737b; color: $white; } +/* Supported by Posit badge in navbar */ + +#supported-by-posit:hover { + box-shadow: 0px 0px 2px rgba(21, 21, 21, 0.05), 0px 2px 4px rgba(21, 21, 21, 0.06); + background-color: #fff; + transition: background-color .05s ease-in-out; +} \ No newline at end of file