Skip to content

Commit

Permalink
MBS-9490: Fix pulse animation
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-csg committed Nov 7, 2024
1 parent 1df5192 commit a766eac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/cssskeleton.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -136,15 +136,15 @@
}
{{#hover}}
#learningmap-svgmap-{{mapid}} .learningmap-place:hover,
#learningmap-svgmap-{{mapid}} .learningmap-place:not(.learningmap-visited):hover {
#learningmap-svgmap-{{mapid}} .learningmap-place.learningmap-reachable:hover,
#learningmap-svgmap-{{mapid}} .learningmap-place.learningmap-reachable:not(.learningmap-visited):hover {
animation: none;
stroke-width: 5px;
stroke-opacity: 1;
}
{{/hover}}
{{#pulse}}
#learningmap-svgmap-{{mapid}} .learningmap-place:not(.learningmap-visited) {
#learningmap-svgmap-{{mapid}} .learningmap-place.learningmap-reachable:not(.learningmap-visited) {
animation: pulse 1.5s infinite;
stroke-opacity: 1;
}
Expand Down

0 comments on commit a766eac

Please sign in to comment.