Disable focus on the apps

0
Hello Mendix Experts,  I was wondering if it is possible to disable focus / auto-focus on apps ?  Basically, after clicking a button, navigation or a link, I do not want to have that to be highlighted anymore.  Thanks in advance.  Deniz
asked
1 answers
2

You could fix this with styling. Buttons and such have some css : 

-&:active and &:active:focus

for example the default button has:

 

.btn-default {
    &:hover,
    &.hover,
    &:focus,
    &:active,
    &:active:focus {
        border-color: $btn-default-border-color;
        background-color: $btn-default-bg-hover;
    }
}

Which give the button the highlight when you click on it. By removing or changing this, you highlight will be gone.

answered