Skip to content

Commit

Permalink
Merge pull request #113 from mebis-lp/MBS-9490-Fix-pulse-animation
Browse files Browse the repository at this point in the history
MBS-9490: Fix pulse animation
  • Loading branch information
fhuebler authored Jan 20, 2025
2 parents e9a101e + a766eac commit 0f81b23
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 0f81b23

Please sign in to comment.