diff --git a/CHANGELOG.md b/CHANGELOG.md index c673927..c493b4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## 1.5.3 - 2024-08 +- (Dan) Adds underline text to laning page of standard reports and to help link[114](https://github.com/epimorphics/standard-reports-ui/issues/114) - (Dan) Styled the help button to match PPD [117](https://github.com/epimorphics/standard-reports-ui/issues/117) - (Dan) Adds more descriptive text to action buttons on the report page [115](https://github.com/epimorphics/standard-reports-ui/issues/115) diff --git a/Gemfile b/Gemfile index 8528736..9879116 100644 --- a/Gemfile +++ b/Gemfile @@ -80,5 +80,5 @@ end # TODO: In production you want to set this to the gem from the epimorphics package repo source 'https://rubygems.pkg.github.com/epimorphics' do gem 'json_rails_logger', '~> 1.0.0' - gem 'lr_common_styles', '~> 1.9.3' + gem 'lr_common_styles', '~> 1.9', '>= 1.9.4' end diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index 472fcc4..0e5a1e3 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -24,3 +24,7 @@ "lr_common_styles/lr-common", "leaflet", "standard-reports"; + + .text-link { + text-decoration: underline; + } diff --git a/app/views/landing/index.html.haml b/app/views/landing/index.html.haml index d3f908b..4fe612f 100644 --- a/app/views/landing/index.html.haml +++ b/app/views/landing/index.html.haml @@ -19,11 +19,12 @@ %p Note: standard reports contain aggregated prices by geographical area. If you are looking for details of individual property sales, please use the - %a{ href: "/app/ppd" } + %a{ href: "/app/ppd", class: "text-link" } PPD report builder instead. %p You can read more information = succeed "." do - = link_to "about this service", "https://www.gov.uk/guidance/price-paid-data-standard-reports#guidance-on-searching-the-data" + = link_to "about this service", "https://www.gov.uk/guidance/price-paid-data-standard-reports#guidance-on-searching-the-data", class: "text-link" + diff --git a/app/views/report_design/_help.html.haml b/app/views/report_design/_help.html.haml index a07384d..f639ca1 100644 --- a/app/views/report_design/_help.html.haml +++ b/app/views/report_design/_help.html.haml @@ -2,4 +2,3 @@ = link_to "https://www.gov.uk/guidance/price-paid-data-standard-reports#guidance-on-searching-the-data", class: "button button--secondary", alt: "Help and tips", title: "Help and tips" do %i.fa.fa-question-circle help -