sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
33 lines (27 loc) • 740 B
CSS
/* stylelint-disable SelectorFormat */
.md-typeset__table {
min-width: 100%;
}
.md-typeset table:not([class]) {
display: table;
}
/* light mode table header bgcolor */
.md-typeset__table th {
background-color: #f2edfe;
}
/* dark mode table header bgcolor */
[data-md-color-scheme="slate"] .md-typeset__table th {
background-color: hsla(var(--md-hue), 25%, 25%, 1)
}
/* light mode alternating table bg colors */
.md-typeset__table tr:nth-child(2n) {
background-color: #f8f8f8;
}
/* dark mode alternating table bg colors */
[data-md-color-scheme="slate"] .md-typeset__table tr:nth-child(2n) {
background-color: hsla(var(--md-hue), 25%, 25%, 1)
}
:root>* {
--md-primary-fg-color: #1B1464;
--md-footer-bg-color: #1B1464;
}