From 0b17d35b318fa5a0abe6fba40b3893af8b987035 Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Sun, 11 Jan 2026 17:59:56 -0800 Subject: [PATCH] Add active/inactive status badge CSS styles - Green background for active employees - Red background for inactive employees Co-Authored-By: Claude Opus 4.5 --- portal/portal.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/portal/portal.css b/portal/portal.css index 631e048..241f7d0 100644 --- a/portal/portal.css +++ b/portal/portal.css @@ -798,6 +798,16 @@ body { color: var(--gray-600); } +.status-badge.active { + background: rgba(34, 197, 94, 0.1); + color: var(--success); +} + +.status-badge.inactive { + background: rgba(239, 68, 68, 0.1); + color: var(--danger); +} + /* Modal */ .modal-overlay { display: none;