File tree 2 files changed +23
-6
lines changed
2 files changed +23
-6
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,15 @@ $mat-tab-animation-duration: 500ms !default;
95
95
z-index : 2 ;
96
96
-webkit-tap-highlight-color : transparent ;
97
97
touch-action : none ;
98
+ box-sizing : content-box ;
99
+ background : none ;
100
+ border : none ;
101
+ outline : 0 ;
102
+ padding : 0 ;
103
+
104
+ & ::-moz-focus-inner {
105
+ border : 0 ;
106
+ }
98
107
99
108
.mat-tab-header-pagination-controls-enabled & {
100
109
display : flex ;
Original file line number Diff line number Diff line change 1
- < div class ="mat-tab-header-pagination mat-tab-header-pagination-before mat-elevation-z4 "
1
+ < button class ="mat-tab-header-pagination mat-tab-header-pagination-before mat-elevation-z4 "
2
2
#previousPaginator
3
3
aria-hidden ="true "
4
- mat-ripple [matRippleDisabled] ="_disableScrollBefore || disableRipple "
4
+ type ="button "
5
+ mat-ripple
6
+ tabindex ="-1 "
7
+ [matRippleDisabled] ="_disableScrollBefore || disableRipple "
5
8
[class.mat-tab-header-pagination-disabled] ="_disableScrollBefore "
9
+ [disabled] ="_disableScrollBefore || null "
6
10
(click) ="_handlePaginatorClick('before') "
7
11
(mousedown) ="_handlePaginatorPress('before', $event) "
8
12
(touchend) ="_stopInterval() ">
9
13
< div class ="mat-tab-header-pagination-chevron "> </ div >
10
- </ div >
14
+ </ button >
11
15
12
16
< div class ="mat-tab-link-container " #tabListContainer (keydown) ="_handleKeydown($event) ">
13
17
< div class ="mat-tab-list " #tabList (cdkObserveContent) ="_onContentChanges() ">
18
22
</ div >
19
23
</ div >
20
24
21
- < div class ="mat-tab-header-pagination mat-tab-header-pagination-after mat-elevation-z4 "
25
+ < button class ="mat-tab-header-pagination mat-tab-header-pagination-after mat-elevation-z4 "
22
26
#nextPaginator
23
27
aria-hidden ="true "
24
- mat-ripple [matRippleDisabled] ="_disableScrollAfter || disableRipple "
28
+ type ="button "
29
+ mat-ripple
30
+ [matRippleDisabled] ="_disableScrollAfter || disableRipple "
25
31
[class.mat-tab-header-pagination-disabled] ="_disableScrollAfter "
32
+ [disabled] ="_disableScrollAfter || null "
33
+ tabindex ="-1 "
26
34
(mousedown) ="_handlePaginatorPress('after', $event) "
27
35
(click) ="_handlePaginatorClick('after') "
28
36
(touchend) ="_stopInterval() ">
29
37
< div class ="mat-tab-header-pagination-chevron "> </ div >
30
- </ div >
38
+ </ button >
You can’t perform that action at this time.
0 commit comments