Highlight remains on selected QBtn with 0.15
-
When a button is selected with 0.14 it is highlighted, and the highlight is removed after the mouse is moved off the button - a reasonable and expected behavior.
Check this behavior at http://v0-14.quasar-framework.org/components/button.html
When a button is selected with 0.15 it is highlighted, and the highlight remains after the mouse is moved off the button until another component of the page is selected - an unexpected behavior.
Check this behavior at http://quasar-framework.org/components/button.html
Any insight or workaround is appreciated.
-
This is an accessibility feature. Use tab / shift + tab to move to next / previous button, use enter key to trigger button
-
@benoitranque - could enabling/disabling this become an option?
-
@benoitranque - would you know any way to disable this thru CSS?
-
Answered in Discord with suggestion:
.q-focus-helper { opacity: 0 !important; }
Scott
-
@s-molinari thanks , it solved my problem!