Fix first link in compatibility matrix table (#3239)

* Fix first link in compatibility matrix table

* Revert "Fix first link in compatibility matrix table"

This reverts commit 069c5c116a.

* Remove sticky header and unused css

* Remove container from hardware specs matrix

---------

Co-authored-by: Peter Jun Park <peter.park@amd.com>
This commit is contained in:
Sam Wu
2024-06-05 13:48:27 -06:00
committed by GitHub
parent 55bb127e9a
commit 35835c4289
2 changed files with 641 additions and 690 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,53 +1,6 @@
/* 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);
.format-big-table {
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;
}