angular-star-rating
angular-star-rating copied to clipboard
How to disable tabindex? A rect focused border is annoying
I'm submitting a...
[ ] Bug report
[X] Feature request
Current behavior
When click, tabindex makes rating component focused and having a rect around.
Expected behavior
show without tabindex attribute in inner Div tag
Even when the star component is clicked the blue rect comes, it is really annoying.
@pipoa @anidotnet You can remove the blue box whilst retaining the tab index (probably the desired result) by adding the following to the scss of the component which uses the star-rating:
/deep/ star-rating div#rating {
outline: none;
}
Noticed the same and almost walked from the demo. Should this not be part of the core package already?
It cant be a feature... its not for screen readers... so....?
Just put on you styles.scss the following
.rating { outline: none; }