Skip to content

Commit b504ddf

Browse files
andrewseguinjelbourn
authored andcommitted
docs(table): fix ie overflow issue (#5768)
1 parent abec992 commit b504ddf

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/material-examples/cdk-table-basic/cdk-table-basic-example.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.example-container {
33
display: flex;
44
flex-direction: column;
5-
max-height: 500px;
65
min-width: 300px;
76
}
87

@@ -13,6 +12,7 @@
1312
.example-table {
1413
flex: 1 1 auto;
1514
overflow: auto;
15+
max-height: 500px;
1616
}
1717

1818
.example-header-row, .example-row {

src/material-examples/table-basic/table-basic-example.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.example-container {
33
display: flex;
44
flex-direction: column;
5-
max-height: 500px;
65
min-width: 300px;
76
}
87

@@ -16,4 +15,5 @@
1615

1716
.mat-table {
1817
overflow: auto;
18+
max-height: 500px;
1919
}

src/material-examples/table-filtering/table-filtering-example.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.example-container {
33
display: flex;
44
flex-direction: column;
5-
max-height: 500px;
65
min-width: 300px;
76
}
87

@@ -31,4 +30,5 @@
3130

3231
.mat-table {
3332
overflow: auto;
33+
max-height: 500px;
3434
}

src/material-examples/table-overview/table-overview-example.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.example-container {
33
display: flex;
44
flex-direction: column;
5-
max-height: 500px;
65
min-width: 300px;
76
}
87

@@ -53,4 +52,5 @@
5352

5453
.mat-table {
5554
overflow: auto;
55+
max-height: 500px;
5656
}

src/material-examples/table-pagination/table-pagination-example.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.example-container {
33
display: flex;
44
flex-direction: column;
5-
max-height: 500px;
65
min-width: 300px;
76
}
87

@@ -16,4 +15,5 @@
1615

1716
.mat-table {
1817
overflow: auto;
18+
max-height: 500px;
1919
}

src/material-examples/table-sorting/table-sorting-example.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.example-container {
33
display: flex;
44
flex-direction: column;
5-
max-height: 500px;
65
min-width: 300px;
76
}
87

@@ -16,6 +15,7 @@
1615

1716
.mat-table {
1817
overflow: auto;
18+
max-height: 500px;
1919
}
2020

2121
.mat-header-cell .mat-sort-header-sorted {

0 commit comments

Comments
 (0)