* 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>
45 lines
611 B
SCSS
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);
|
|
}
|
|
}
|