Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove action list item animation #2284

Merged
merged 2 commits into from
Oct 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/strange-bags-protect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@primer/css": patch
---

Remove action list item animation
16 changes: 0 additions & 16 deletions src/actionlist/action-list-item.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,22 +52,6 @@
// stylelint-disable-next-line primer/box-shadow
box-shadow: inset 0 0 0 $border-width var(--color-action-list-item-default-active-border);
}

@media screen and (prefers-reduced-motion: no-preference) {
animation: ActionList-item-active-bg 4s forwards cubic-bezier(0.33, 1, 0.68, 1);
}

@keyframes ActionList-item-active-bg {
50% {
// stylelint-disable-next-line primer/box-shadow
box-shadow: inset 0 2px 12px 6px rgba(var(--color-canvas-default), 0.4);
transform: scale(1);
}

100% {
transform: scale(0.97);
}
}
}

// hide dividers
Expand Down