-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
Description
I was scared to press any of the hoverable actions-overlay, because I had no idea what they did. Would it be possible to add a tooltip for these?
I was glad this is an electron application, as I was able to track down what I was looking at.
envkey-app/envkey-react/src/components/env_manager/env_cell/env_cell.js
_renderActions(){
return h.div(".actions-overlay", this._actions().map(::this._renderAction))
}
Rendered html:
<div class="actions-overlay">
<span class="edit">
<span class="img-bg-wrap"></span>
<img src="assets/images/edit-circle-black.png">
</span>
<span class="copy">
<span class="img-bg-wrap"></span>
<img src="assets/images/copy-circle-black.png">
</span>
<span class="remove">
<span class="img-bg-wrap"></span>
<img src="assets/images/remove-circle-black.png">
</span>
</div>