16 lines
629 B
CSS
16 lines
629 B
CSS
/* Audit Log drilldown drawer (#23 M7 Bundle C).
|
|
The base offcanvas + backdrop classes come from Bootstrap. The local
|
|
overrides below pin our preferred width and the footer tint. The body
|
|
(pre-block) styles travel with the markup in AuditEventDetail.razor.css. */
|
|
|
|
.audit-drilldown-drawer {
|
|
/* Slightly wider than the parked-messages drawer because audit rows can
|
|
carry larger JSON bodies and SQL blocks. Clamp to viewport so narrow
|
|
windows still get the close button on screen. */
|
|
width: min(720px, 95vw);
|
|
}
|
|
|
|
.audit-drilldown-drawer .drawer-footer {
|
|
background-color: var(--bs-tertiary-bg);
|
|
}
|