Button only visible if hovered over itself with mouse
0
Hey! It’s a straight forward thing I want to do but can only find conditional visibility based on attributes, roles etc. I have worked with Powerapps and there it was a simple feature. How do I make this work in Mendix?
asked
Benjamin Olsson
2 answers
0
Hover over what exactly?
You can make buttons ‘visible’ on hover, but there has to be something you're hovering over to trigger this.
answered
Andrew Waijers
4
just call this class
.mx-btn{
visibility: hidden;
&:hover{
visibility: visible;
}
it will make the button hidden and once you hover it will be visible.