Skip to content

Commit

Permalink
chore(search): review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
badejayayesubabu committed Jul 22, 2021
1 parent 9181826 commit da71b23
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/scss/components/search/SearchFacade.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
//

@mixin SearchFacadePristineFocus {
border: 1px solid $cyan-700;
border: 1px solid var(--hxSearch-SearchFacadePristineFocus-border, $cyan-700);
border: 1px solid $blue-700;
border: 1px solid var(--hxSearch-SearchFacadePristineFocus-border, $blue-700);
box-shadow: $focus-glow;
}

Expand Down
8 changes: 4 additions & 4 deletions src/scss/components/search/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ hx-search-control {

> input[type="search"]:focus ~ hx-search,
> button.hxClear:focus ~ hx-search {
border-color: $cyan-700;
border-color: var(--hxSearch-border-color, $cyan-700);
border-color: $blue-700;
border-color: var(--hxSearch-border-color, $blue-700);
box-shadow: $focus-glow;
}

Expand Down Expand Up @@ -234,7 +234,7 @@ hx-search-control:not([hx-defined]) > button {
width: 100%;

&:hover {
background-color: $cyan-50;
background-color: var(--hxSearch-hxSearchSuggestion-hover-bgcolor, $cyan-50);
background-color: $blue-100;
background-color: var(--hxSearch-hxSearchSuggestion-hover-bgcolor, $blue-100);
}
}

0 comments on commit da71b23

Please sign in to comment.