mirror of
https://github.com/ROCm/ROCm.git
synced 2026-02-04 03:15:28 -05:00
* add compatibility matrix and custom css * fix toc * reorder some components in matrix, add missing tools to reference page * Update docs/compatibility/compatibility-matrix.rst Co-authored-by: Leo Paoletti <164940351+lpaoletti@users.noreply.github.com> --------- Co-authored-by: Leo Paoletti <164940351+lpaoletti@users.noreply.github.com>
54 lines
1.2 KiB
CSS
54 lines
1.2 KiB
CSS
|
|
/* Adds container for big tables, used for Compatibility Matrix */
|
|
|
|
|
|
/* Header row to have opaque background colour when sticky */
|
|
.format-big-table th {
|
|
background-color: var(--pst-color-background);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* Turn on borders for whole table */
|
|
.format-big-table th,
|
|
.format-big-table td {
|
|
border-width: 1px;
|
|
}
|
|
|
|
/* .format-big-table th.head { */
|
|
/* background-color: var(--pst-color-on-surface); */
|
|
/* } */
|
|
|
|
/* Sticky header for table excluding the stub*/
|
|
.format-big-table th.head:not(.stub) {
|
|
position: sticky;
|
|
top: 3rem;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* Sticky header for the head & stub: top left cell */
|
|
.format-big-table th.head.stub {
|
|
position: sticky;
|
|
top: 3rem;
|
|
z-index: 1;
|
|
background-color: var(--pst-color-background);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* Sticky for the stub column */
|
|
/*.format-big-table tbody th:not(:empty) {
|
|
position: sticky;
|
|
top: 3rem;
|
|
z-index: 2;
|
|
}*/
|
|
|
|
/* Removes borders for stub column */
|
|
.format-big-table tbody th {
|
|
border-top: none;
|
|
border-bottom: none;
|
|
}
|
|
|
|
/* For horizontal scrolling only. Can't be combined with format-big-table container */
|
|
.horizontal-scrolling-container {
|
|
overflow-x: scroll;
|
|
}
|