1
0
mirror of synced 2025-12-22 11:26:57 -05:00
Files
docs/components/rest/RestParameterTable.module.scss
Grace Park 21b59b5805 Move mini tocs rest + collapsible (#26069)
* starting minitocs change

* moving rest mini tocs and adding functionality to collapse

* adding some comments

* update margins

* minor updates: fix scroll to top button add padding to resthttpmethod verbs and background color for nested arrows in minitocs

* Update components/rest/RestReferencePage.tsx

Co-authored-by: Rachael Sewell <rachmari@github.com>

* Update components/rest/RestReferencePage.tsx

Co-authored-by: Rachael Sewell <rachmari@github.com>

* fix comment

* fix wording and z index

* bring back articlegridlayout

* updating margins for lg and xl

Co-authored-by: Rachael Sewell <rachmari@github.com>
2022-03-14 10:50:53 -07:00

45 lines
611 B
SCSS

.parameterTable {
table-layout: fixed !important;
z-index: 0;
thead {
tr {
border-top: none;
th {
border: 0;
font-weight: normal;
}
}
}
tr:nth-child(2n) {
background: none !important;
}
td {
padding: 0.75rem 0.5rem !important;
border: 0 !important;
vertical-align: top;
width: 100%;
}
tbody {
tr td {
width: auto;
}
tr td:first-child {
font-weight: bold;
}
table tr td:not(:first-child) {
font-weight: normal;
}
}
code {
background-color: var(--color-canvas-subtle);
}
}