diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d79f535..8d7d0c35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## 1.7.5 - 2024-08 +- (Bogdan) Fixed a bug where CSS was applied to the wrong element, causing search + location results to be displayed incorrectly +- (Bogdan) Increased focusable area for close button on modal and hide graph button + [GH-411](https://github.com/epimorphics/ukhpi/issues/411) - (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) diff --git a/app/assets/stylesheets/_data-view.scss b/app/assets/stylesheets/_data-view.scss index 6dbdc029..533d5197 100644 --- a/app/assets/stylesheets/_data-view.scss +++ b/app/assets/stylesheets/_data-view.scss @@ -53,6 +53,7 @@ $options-panel-grey: #eef1f6; } .js .o-data-view__hide-action { + padding: 1px 5px; font-size: 0; text-decoration: none; } diff --git a/app/assets/stylesheets/_ukhpi-location-select.scss b/app/assets/stylesheets/_ukhpi-location-select.scss index 301c9c5d..ae23fa79 100644 --- a/app/assets/stylesheets/_ukhpi-location-select.scss +++ b/app/assets/stylesheets/_ukhpi-location-select.scss @@ -8,6 +8,7 @@ .el-dialog__close { color: #000000; + padding: 4px; } .el-input__inner { @@ -18,7 +19,9 @@ color: #a4742b; } - .el-button { - color: #000000; + .el-dialog__footer { + .el-button { + color: #000000; + } } }