Skip to content

Commit

Permalink
style: [Attribute page] related PrestaShop#36012 - fix button "Rearra…
Browse files Browse the repository at this point in the history
…nge" is displayed just a few milli seconds when clicking sorting by position
  • Loading branch information
mattgoud committed Jun 11, 2024
1 parent fa1b525 commit 80784a7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
9 changes: 9 additions & 0 deletions admin-dev/themes/new-theme/scss/components/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -325,3 +325,12 @@ table {
}
}
}

// -----------------------
// Styling grid extensions
// -----------------------

// Position extension
.js-btn-reorder-positions {
animation: fadeIn 0.5s;
}
10 changes: 10 additions & 0 deletions admin-dev/themes/new-theme/scss/config/_keyframes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,13 @@
transform: translate(0);
}
}

@keyframes fadeIn {
0% {
opacity: 0;
}

100% {
opacity: 1;
}
}

0 comments on commit 80784a7

Please sign in to comment.