From a79b8a7d5a462ef3e05a9297cb01422083dfdae9 Mon Sep 17 00:00:00 2001 From: Kate Riley Date: Mon, 15 Apr 2024 16:03:55 +0100 Subject: [PATCH] add css class for legend cursor --- gov_uk_dashboards/assets/dashboard.css | 5 +++++ scss/dashboard.scss | 5 +++++ setup.py | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/gov_uk_dashboards/assets/dashboard.css b/gov_uk_dashboards/assets/dashboard.css index 46b3718..338d303 100644 --- a/gov_uk_dashboards/assets/dashboard.css +++ b/gov_uk_dashboards/assets/dashboard.css @@ -8143,4 +8143,9 @@ mark.expenditure { .default-cursor-graph .draglayer.cursor-crosshair { cursor: default !important; +} + +.non-interactive-legend-cursor .legend text, +.non-interactive-legend-cursor .legend .traces .legendtoggle { + cursor: default !important; } \ No newline at end of file diff --git a/scss/dashboard.scss b/scss/dashboard.scss index 5132c47..76487aa 100644 --- a/scss/dashboard.scss +++ b/scss/dashboard.scss @@ -1177,4 +1177,9 @@ mark.expenditure { .default-cursor-graph .draglayer.cursor-crosshair { cursor: default !important; +} + +.non-interactive-legend-cursor .legend text, +.non-interactive-legend-cursor .legend .traces .legendtoggle { + cursor: default !important; } \ No newline at end of file diff --git a/setup.py b/setup.py index afd17d4..4fb20db 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ author="Department for Levelling Up, Housing and Communities", description="Provides access to functionality common to creating a data dashboard.", name="gov_uk_dashboards", - version="9.29.1", + version="9.30.0", long_description=long_description, long_description_content_type="text/markdown", packages=find_packages(),