Defman21 / komodo-terminal-butterfly

Docks the Butterfly terminal in Komodo
https://defman.me/projects/komodo-terminal/
Other
8 stars 3 forks source link

Remove caret blinking animation #7

Closed Naatan closed 8 years ago

Naatan commented 8 years ago

it's inconsistent with the UX of Komodo (ie. it should not fade in and out).

Defman21 commented 8 years ago

It's on the way!

Naatan commented 8 years ago

Wouldn't that remove the blinking altogether? My suggestion was to remove the fading animation, the blinking should still occur.

Defman21 commented 8 years ago

It's done with butterfly's js, so I'm not sure this is possible.

Defman21 commented 8 years ago

hmm, gonna try to remove transition!

Naatan commented 8 years ago

You can override any part of butterfly css. Pretty sure this is just a css animation.

Defman21 commented 8 years ago

@Naatan it keeps adding and removing .reverse-video to the cursor, so I guess it's done with js. I'm gonna dig in it though.

Naatan commented 8 years ago

.reverse-video likely has an animation set on it.

Try:

.reverse-video {
  animation: none !important;
  transition: none !important;
}
Defman21 commented 8 years ago

Doesn't work :( I'm still searching.

Defman21 commented 8 years ago

Aha, that did the trick!