mirror of
https://github.com/nasa/openmct.git
synced 2025-06-21 00:23:01 +00:00
Merge pull request #879 from nasa/table-headers-809
[Table] Fix headers in firefox
This commit is contained in:
@ -34,17 +34,28 @@
|
|||||||
}
|
}
|
||||||
.mct-table {
|
.mct-table {
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
|
thead {
|
||||||
|
display: block;
|
||||||
|
tr {
|
||||||
|
display: block;
|
||||||
|
white-space: nowrap;
|
||||||
th {
|
th {
|
||||||
|
display: inline-block;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
tbody {
|
tbody {
|
||||||
tr {
|
tr {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
white-space: nowrap;
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
td {
|
td {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
display: inline-block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user