From 749e0f8d5b4a2c71ffd0706f1a6ee65a131d350e Mon Sep 17 00:00:00 2001 From: Bogdan Marc Date: Tue, 13 Aug 2024 15:33:57 +0100 Subject: [PATCH 1/5] Make search location input border darker --- app/assets/stylesheets/_ukhpi-location-select.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/_ukhpi-location-select.scss b/app/assets/stylesheets/_ukhpi-location-select.scss index 1119c472..98a41740 100644 --- a/app/assets/stylesheets/_ukhpi-location-select.scss +++ b/app/assets/stylesheets/_ukhpi-location-select.scss @@ -10,6 +10,10 @@ color: #000000; } + .el-input__inner { + border: 1px solid #9ea0a5; + } + .el-alert--warning.is-light { color: #a4742b; } From 51abc755078140f3d58a13083d25a7e1d1edcad9 Mon Sep 17 00:00:00 2001 From: Bogdan Marc Date: Tue, 13 Aug 2024 15:34:12 +0100 Subject: [PATCH 2/5] Set font color for buttons to black --- app/assets/stylesheets/_ukhpi-location-select.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/_ukhpi-location-select.scss b/app/assets/stylesheets/_ukhpi-location-select.scss index 98a41740..301c9c5d 100644 --- a/app/assets/stylesheets/_ukhpi-location-select.scss +++ b/app/assets/stylesheets/_ukhpi-location-select.scss @@ -17,4 +17,8 @@ .el-alert--warning.is-light { color: #a4742b; } + + .el-button { + color: #000000; + } } From 2e0ceee4e715869110993d90c027ba16c596812b Mon Sep 17 00:00:00 2001 From: Bogdan Marc Date: Tue, 13 Aug 2024 15:34:36 +0100 Subject: [PATCH 3/5] Set text color for inner radio buttons to black --- app/assets/stylesheets/_ukhpi-maps.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/_ukhpi-maps.scss b/app/assets/stylesheets/_ukhpi-maps.scss index 3b58ee39..450d5f26 100644 --- a/app/assets/stylesheets/_ukhpi-maps.scss +++ b/app/assets/stylesheets/_ukhpi-maps.scss @@ -22,6 +22,7 @@ width: 100%; border: 0; border-radius: 0; + color: #000000; } } From d3c4f56abe39d7c084c68c42aaa29a87209ebfc1 Mon Sep 17 00:00:00 2001 From: Bogdan Marc Date: Tue, 13 Aug 2024 15:34:52 +0100 Subject: [PATCH 4/5] Increase contrast for selected radio button --- app/assets/stylesheets/_ukhpi-maps.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/_ukhpi-maps.scss b/app/assets/stylesheets/_ukhpi-maps.scss index 450d5f26..460c5102 100644 --- a/app/assets/stylesheets/_ukhpi-maps.scss +++ b/app/assets/stylesheets/_ukhpi-maps.scss @@ -24,6 +24,10 @@ border-radius: 0; color: #000000; } + + .el-radio-button__orig-radio:checked+.el-radio-button__inner { + background-color: #2c659f; + } } .leaflet-container { From 2b8a70dddfd8cb3fc8f75ec9dae470dfa53c699a Mon Sep 17 00:00:00 2001 From: Bogdan Marc Date: Tue, 13 Aug 2024 15:35:04 +0100 Subject: [PATCH 5/5] Added changelog entry --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e9262e1..0d79f535 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## 1.7.5 - 2024-08 +- (Bogdan) Increased contrast for search location input and map elements, as well + as all modal buttons [GH-408](https://github.com/epimorphics/ukhpi/issues/408) - (Bogdan) Increased contrast of modal warning message [GH-407](https://github.com/epimorphics/ukhpi/issues/407) - (Bogdan) Increased contrast for modal close button and body [GH-407](https://github.com/epimorphics/ukhpi/issues/407) - (Bogdan) Landing page links should now be more visible [GH-406](https://github.com/epimorphics/ukhpi/issues/406)