Files
authentik/website/docusaurus-theme/components/KeyBindingsTable/styles.module.css
Teffen Ellis 64b08f77a8 website: QL Search keyboard interactions docs, examples. (#16259)
* website: Flesh out keyboard interactions docs, examples.

* Update doc

* Fix links and apply suggestions

---------

Co-authored-by: dewi-tik <dewi@goauthentik.io>
2026-01-30 16:49:23 +00:00

56 lines
1.2 KiB
CSS

.table {
width: 100%;
--ifm-table-border-color: var(--ifm-color-info-contrast-background);
--ifm-table-stripe-background: transparent;
--ifm-table-stripe-background: var(--ifm-color-emphasis-100);
thead {
background-color: var(--ifm-color-info-contrast-background);
text-align: left;
}
tr,
td,
th {
border-color: transparent;
}
tr {
th {
border-block-end-color: var(--ifm-color-info-contrast-background);
}
td:first-child {
text-align: end;
font-family: var(--ifm-heading-font-family);
font-weight: 300;
border-inline-end-color: var(--ifm-color-secondary-dark);
}
}
tbody tr th {
--ifm-table-cell-padding: 0.5rem;
font-weight: 600;
font-family: var(--ifm-heading-font-family);
text-align: end;
background-color: transparent;
}
kbd {
user-select: none;
text-rendering: optimizeLegibility;
font-weight: 900;
letter-spacing: 0.05em;
padding: 0.25rem 0.25rem;
}
.actionColumn {
min-width: 20rem;
}
.bindingColumn {
width: 100%;
}
}