Skip to content

Commit

Permalink
update styling
Browse files Browse the repository at this point in the history
  • Loading branch information
ck-c8y committed Oct 22, 2023
1 parent 97b2c07 commit db88539
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,21 +80,19 @@ json-editor > div {
animation-duration: 2s;
}


.animate-background {
animation-name: background-color;
animation-duration: 2s;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
animation-timing-function: ease;
}


@keyframes background-color {
from {
background-color: white;
}
to {
background-color: #8adbd5;
from {
background-color: #8adbd5;
}
to {
background-color: white;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export class MappingStepperComponent implements OnInit {
"templateOptions.class": (model) => {
//console.log("Logging class:", t)
if (
model.currentSubstitution.pathTarget == "" &&
model.currentSubstitution.pathSource == "" &&
model.stepperConfiguration.allowDefiningSubstitutions
) {
return "input-sm animate-background";
Expand Down

0 comments on commit db88539

Please sign in to comment.