You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on my app, and the demo ember-paper app, after selecting a menu item I've been seeing a (blue) outline. (see attach image)
I've been able to corrent this by add to my app.scss: md-menu { outline: none; }
as for doing a pr to fix this for everyone?
adding this to node_modules/angular-material-source/src/components/menu/menu.scss doesnt make sense.
would it make sense to add this fix to app/styles/ember-paper.sccs after the imports? if not there then where/how?
The text was updated successfully, but these errors were encountered:
Basically, we had tabindex="0" from ember-basic-dropdown and AM doesn't have any tabindex defined.
I changed it to -1 to make sure that element never gets focused (bypassing the focus to the nested button).
on my app, and the demo ember-paper app, after selecting a menu item I've been seeing a (blue) outline. (see attach image)
I've been able to corrent this by add to my app.scss:
md-menu { outline: none; }
as for doing a pr to fix this for everyone?
adding this to node_modules/angular-material-source/src/components/menu/menu.scss doesnt make sense.
would it make sense to add this fix to app/styles/ember-paper.sccs after the imports? if not there then where/how?
The text was updated successfully, but these errors were encountered: