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

UG(879550): Need to Remove animation styles in customization common and individual samples. #337

Open
wants to merge 1 commit into
base: hotfix/hotfix-v25.1.35
Choose a base branch
from
Open
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
11 changes: 0 additions & 11 deletions ej2-vue/code-snippet/timeline/common-connector/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,5 @@ export default {
.custom-connector .e-timeline-item.e-connector::after {
border-color: #f7c867;
border-width: 1.4px;
animation: progress 2s;
}

@keyframes progress {
from {
height: 0%;
}

to {
height: 100%;
}
}
</style>
11 changes: 0 additions & 11 deletions ej2-vue/code-snippet/timeline/common-connector/index.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,4 @@
.custom-connector .e-timeline-item.e-connector::after {
border-color: #f7c867;
border-width: 1.4px;
animation: progress 2s;
}

@keyframes progress {
from {
height: 0%;
}

to {
height: 100%;
}
}
12 changes: 0 additions & 12 deletions ej2-vue/code-snippet/timeline/individual-connector/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,9 @@ export default {

.custom-connector .e-timeline-item.state-initial.e-connector::after {
border: 1.5px #f8c050 dashed;
animation: progress 1.5s ease-in-out;
}

.custom-connector .e-timeline-item.state-intermediate.e-connector::after {
border: 1.5px #4d85f5 dashed;
animation: progress 1.5s ease-in-out;
}

@keyframes progress {
from {
height: 0%;
}

to {
height: 100%;
}
}
</style>
12 changes: 0 additions & 12 deletions ej2-vue/code-snippet/timeline/individual-connector/index.css
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
.custom-connector .e-timeline-item.state-initial.e-connector::after {
border: 1.5px #f8c050 dashed;
animation: progress 1.5s ease-in-out;
}

.custom-connector .e-timeline-item.state-intermediate.e-connector::after {
border: 1.5px #4d85f5 dashed;
animation: progress 1.5s ease-in-out;
}

@keyframes progress {
from {
height: 0%;
}

to {
height: 100%;
}
}