Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make scroll buttons visual-only elements #14886

Merged
merged 7 commits into from
Oct 18, 2024
Merged
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div #headerContainer class="igx-tabs__header">
<button #scrollPrevButton type="button" igxIconButton="flat" igxRipple class="igx-tabs__header-button" (click)="scrollPrev()">
<button #scrollPrevButton type="button" igxIconButton="flat" igxRipple tabindex="-1" class="igx-tabs__header-button" (click)="scrollPrev()">
<igx-icon family="default" name="prev"></igx-icon>
</button>
<div #viewPort class="igx-tabs__header-content">
Expand All @@ -13,7 +13,7 @@
</div>
</div>
</div>
<button #scrollNextButton type="button" igxIconButton="flat" igxRipple class="igx-tabs__header-button" (click)="scrollNext()">
<button #scrollNextButton type="button" igxIconButton="flat" igxRipple tabindex="-1" class="igx-tabs__header-button" (click)="scrollNext()">
<igx-icon family="default" name="next"></igx-icon>
</button>
</div>
Expand Down
Loading