Skip to content

Commit

Permalink
fix(search-street): improve contrast for hovered dropdown item
Browse files Browse the repository at this point in the history
  • Loading branch information
derrabauke authored and luytena committed Apr 18, 2024
1 parent 21767c8 commit 4f29486
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/styles/ember-ebau-gwr.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ $ember-power-select-trigger-icon-color: transparent;
@extend .uk-invisible;
}

.ember-power-select-option:hover > small {
.ember-power-select-option:hover > small,
.ember-power-select-option[aria-current="true"] > small {
mix-blend-mode: multiply;
}
}
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/components/search-street-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import {
} from "ember-power-select/test-support/helpers";
import { module, test } from "qunit";

module("Integration | Component | search-street", function(hooks) {
module("Integration | Component | search-street", function (hooks) {
setupRenderingTest(hooks);

test("it renders", async function(assert) {
test("it renders", async function (assert) {
this.set("street");
this.set("options", {
locality: {
Expand Down

0 comments on commit 4f29486

Please sign in to comment.