Keyword is _during_.
When attempting to click a button, such as New Terminal, Close All or switching to a different open terminal. I must first wait until the fade in transition on the tooltip has finished, meaning if the mouse release event occurs before this the button is not clicked.
The buttons work fine when I disable the transition from Developer Tools.
Well damn, I think it might be from atom-material-ui by silvestreh.
I've been experiencing the same issue with atom-material-ui. How did you disable the transition from devtools?
EDIT: Nvm, I figured it out. Adding this to my stylesheet fixed the problem:
.tooltip {
transition: opacity 500ms;
}
The problem is that atom-material-ui adds unnecessary transitions to the transform property of tooltips. This resets it to only having transitions on the tooltip opacity.
Came here with the same issue, thanks!
Please retest again with platformio-atom-ide-terminal 2.9.0 which since f64888d is using node-pty-prebuilt instead unmaintained and outdated pty.js. This is good news for stability and compatibility.
if issues persist, please open a new ticket with requested information.
Thx =)
Most helpful comment
I've been experiencing the same issue with atom-material-ui. How did you disable the transition from devtools?
EDIT: Nvm, I figured it out. Adding this to my stylesheet fixed the problem:
The problem is that atom-material-ui adds unnecessary transitions to the
transformproperty of tooltips. This resets it to only having transitions on the tooltip opacity.