Compare commits

..

2 Commits

Author SHA1 Message Date
f8b15f0ff4
0.1.9
All checks were successful
Build and test / build-and-test (18.x) (push) Successful in 7m55s
Build and test / build-and-test (20.x) (push) Successful in 3m11s
2023-11-26 21:46:01 -08:00
20e585e708
change table class names to avoid collision with prism highlighting 2023-11-26 21:45:55 -08:00
3 changed files with 16 additions and 16 deletions

View File

@ -192,64 +192,64 @@ mark {
/* ===== Tables ===== */
table, .table, td, .td {
table, .faux-table, td, .faux-td {
color: var(--theme-text-body);
font-family: var(--font-body);
}
table, .table {
table, .faux-table {
display: table;
margin-block: 2rem;
border-collapse: collapse;
}
table, th, td,
.table, .th, .td {
.faux-table, .faux-th, .faux-td {
font-size: 1rem;
line-height: 1.75;
}
thead, .thead {
thead, .faux-thead {
display: table-header-group;
}
tbody, .tbody {
tbody, .faux-tbody {
display: table-row-group;
}
tbody tr,
.tbody .tr {
.faux-tbody .faux-tr {
border-top: 1px var(--theme-line) solid;
}
tr, .tr {
tr, .faux-tr {
display: table-row;
}
th, .th {
th, .faux-th {
text-align: center;
font-weight: 700;
color: var(--theme-text-heading);
}
th, .th,
td, .td {
th, .faux-th,
td, .faux-td {
padding-block: 0.5rem;
padding-inline: 1rem;
display: table-cell;
}
td, .td {
td, .faux-td {
display: table-cell;
font-weight: 300;
vertical-align: top;
}
:is(td, .td):not(:last-of-type) {
:is(td, .faux-td):not(:last-of-type) {
border-inline-end: 0.1rem solid var(--theme-line);
}
:is(table, .table) :is(input, select) {
:is(table, .faux-table) :is(input, select) {
margin-block: 0;
}

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@doc-utils/docs2website",
"version": "0.1.8",
"version": "0.1.9",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@doc-utils/docs2website",
"version": "0.1.8",
"version": "0.1.9",
"dependencies": {
"@doc-utils/color-themes": "^0.2.0",
"@doc-utils/jsonschema2markdown": "^0.1.1",

View File

@ -1,6 +1,6 @@
{
"name": "@doc-utils/docs2website",
"version": "0.1.8",
"version": "0.1.9",
"publishConfig": {
"registry": "https://gitea.jbrumond.me/api/packages/doc-utils/npm/"
},