Skip to content
Snippets Groups Projects
Commit c4c34c82 authored by danieldeng2's avatar danieldeng2
Browse files

synchronise searchbar animations

parent a581b7ba
No related branches found
No related tags found
No related merge requests found
...@@ -11,10 +11,10 @@ ...@@ -11,10 +11,10 @@
.searchBar { .searchBar {
border-radius: 8px; border-radius: 8px;
background-color: $gray-100; background-color: $gray-100;
border-color: $gray-100; border-color: $gray-100;
transition: 0.5s border-color; transition: 0s all;
-webkit-transition: 0.5s border-color; -webkit-transition: 0s all;
-moz-transition: 0.5s border-color; -moz-transition: 0s all;
} }
.serachBar::placeholder { .serachBar::placeholder {
...@@ -22,10 +22,19 @@ ...@@ -22,10 +22,19 @@
opacity: 1; opacity: 1;
} }
.searchBar:focus { .searchBar:focus + :global(.input-group-append) .searchBarIcon{
box-shadow: none !important; box-shadow: none !important;
border-left: none;
border-color: $gray-300;
background-color: $white;
}
.searchBar:focus{
box-shadow: none !important;
border-right: none;
border-color: $gray-300; border-color: $gray-300;
background-color: $white; background-color: $white;
} }
.searchBarIcon { .searchBarIcon {
...@@ -33,12 +42,13 @@ ...@@ -33,12 +42,13 @@
background-color: $gray-100; background-color: $gray-100;
border-color: $gray-100; border-color: $gray-100;
color: $gray-500; color: $gray-500;
transition: 0.2s background; transition: 0s all;
-webkit-transition: 0.2s background; -webkit-transition: 0s all;
-moz-transition: 0.2s background; -moz-transition: 0s all;
margin-left: 1px; margin-left: 1px;
} }
.searchBarIcon:hover { .searchBarIcon:hover {
background: $gray-200; background: $gray-200;
color: $gray-700 !important; color: $gray-700 !important;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment