Skip to content

Commit

Permalink
remove unused animation declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
rudlinkon committed Sep 12, 2024
1 parent 25eb919 commit ce3fb08
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 69 deletions.
48 changes: 0 additions & 48 deletions assets/front-end/css/view/advanced-accordion.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,54 +107,6 @@
display: block;
}

@-webkit-keyframes rotate-90 {
0% {
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
}
100% {
-webkit-transform: rotateY(-180deg);
transform: rotateY(-180deg);
}
}

@keyframes rotate-90 {
0% {
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
}
100% {
-webkit-transform: rotateY(-180deg);
transform: rotateY(-180deg);
}
}

@-webkit-keyframes fadeIn {
0% {
opacity: 1;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
100% {
opacity: 1;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
}

@keyframes fadeIn {
0% {
opacity: 1;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
100% {
opacity: 1;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
}

.rtl .eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle {
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
Expand Down
2 changes: 1 addition & 1 deletion assets/front-end/css/view/advanced-accordion.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 0 additions & 20 deletions src/css/view/advanced-accordion.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,26 +87,6 @@
display: block;
}

@keyframes rotate-90 {
0% {
transform: rotateY(0deg);
}
100% {
transform: rotateY(-180deg);
}
}

@keyframes fadeIn {
0% {
opacity: 1;
transition: all 0.3s ease-in-out;
}
100% {
opacity: 1;
transition: all 0.3s ease-in-out;
}
}

.rtl {
.eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle {
transform: rotate(-90deg);
Expand Down

0 comments on commit ce3fb08

Please sign in to comment.