Skip to content

Commit

Permalink
chore(select): remove search mag animation
Browse files Browse the repository at this point in the history
  • Loading branch information
Erbil Nas committed Dec 25, 2023
1 parent 237138b commit b686d3c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 37 deletions.
36 changes: 0 additions & 36 deletions src/components/select/bl-select.css
Original file line number Diff line number Diff line change
Expand Up @@ -393,10 +393,6 @@ legend span {
outline: none;
}

.search-mag-icon {
animation: wiggle 2s linear infinite;
}

.search-loading-icon {
animation: spin 1s linear infinite;
}
Expand All @@ -410,35 +406,3 @@ legend span {
transform: rotate(360deg);
}
}

@keyframes wiggle {
0%,
7% {
transform: rotateZ(0);
}

15% {
transform: rotateZ(-15deg);
}

20% {
transform: rotateZ(10deg);
}

25% {
transform: rotateZ(-10deg);
}

30% {
transform: rotateZ(6deg);
}

35% {
transform: rotateZ(-4deg);
}

40%,
100% {
transform: rotateZ(0);
}
}
1 change: 0 additions & 1 deletion src/components/select/bl-select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,6 @@ export default class BlSelect<ValueType extends FormValue = string> extends Form
: "";

const searchMagIcon = html`<bl-icon
class="search-mag-icon"
name="search"
style="color: var(--bl-color-primary)"
></bl-icon>`;
Expand Down

0 comments on commit b686d3c

Please sign in to comment.