Audit trails must maintain immutable records per SOX Section 404, GDPR Article 30, and financial services regulations requiring complete activity logs.
Audit Trail Viewer
ComplianceChronological activity log with user actions, filterable events, and detailed timestamps for compliance audit requirements.
Regulatory Context
Critical Rules Demonstrated
-
COLOR-001View Rule Details → -
ICON-001View Rule Details → -
A11Y-001View Rule Details →
Standard vs Enhanced Treatment
Standard
Modified
Enhanced
Modified
Live Example
Activity Log
2,847 events recorded Jan 1 - Jan 19, 2026
Today - January 19, 2026
14:32:18
Modified Information Security Policy v3.2
13:15:42
Accessed Customer Risk Report - Q4 2025
11:08:55
Created New Control Testing Record CT-2026-0042
09:22:30
Login Successful authentication
Yesterday - January 18, 2026
17:45:12
Deleted Draft incident report IR-2026-DRAFT-03
14:20:08
Modified User permissions - Risk Team group
Showing 1-6 of 2,847 events
...
Brand Rules Applied
- COLOR-001: "Modified" action uses Navy text on Citrus background, not white text
- ICON-001: All icons use outlined style - edit, view, delete, login, user icons
- A11Y-001: Action types have text labels (Created/Modified/Deleted/Accessed) alongside visual indicators
Code Example
<!-- Action type with text label - A11Y-001 -->
<span class="action-type modify">Modified</span>
<style>
.action-type.modify {
/* Navy text on Citrus - COLOR-001 */
background: rgba(171, 221, 101, 0.3);
color: var(--as-navy);
}
/* Outlined edit icon - ICON-001 */
.entry-icon svg {
fill: none;
stroke: currentColor;
stroke-width: 1.5;
}
</style>