Add active/inactive status badge CSS styles
- Green background for active employees - Red background for inactive employees Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
b8e85f3f11
commit
0b17d35b31
1 changed files with 10 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue