meteor-velocity / html-reporter

HTML reporter for Meteor velocity testing framework
MIT License
23 stars 20 forks source link

Pulsing animation slightly CPU intensive #88

Open ffxsam opened 9 years ago

ffxsam commented 9 years ago

I noticed something strange. I use WebStorm as my IDE, and every time I was working on my project, I noticed typing in WebStorm was rather laggy. Turns out, it's the pulsating CSS animation that's causing it. This happens in both Chrome and Firefox.

I'm sure this is probably more of a WebStorm issue, as my system itself doesn't seem taxed by the animation. But I wanted to see if anyone has had the same experience. If so, I'll probably take this to the WebStorm forum and report it.

ffxsam commented 9 years ago

Maybe a way to disable the pulsing via settings.json would be handy. Till then, I'm just overriding:

#velocity-status-widget.pending .velocity-icon-status:before {
  animation: none;
  -webkit-animation: none;
}