feat: CV Batches system with AI extraction, matching, and slide-in chat

This commit is contained in:
root
2026-07-25 09:41:26 +00:00
parent 692b383aa5
commit ecb9ebb507
10 changed files with 910 additions and 18 deletions

View File

@@ -215,6 +215,45 @@ tr:hover { background: var(--bg-input); }
.chat-input { display: flex; gap: 8px; }
.chat-input textarea { flex: 1; min-height: 44px; max-height: 120px; }
/* Slide-in chat panel for batch discussion */
.chat-panel {
position: fixed;
top: 0;
right: 0;
width: 400px;
height: 100vh;
background: var(--bg-card);
border-left: 2px solid var(--border);
display: flex;
flex-direction: column;
z-index: 9999;
box-shadow: -4px 0 20px rgba(0,0,0,0.3);
transition: transform 0.3s ease;
}
.chat-panel-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 16px;
border-bottom: 1px solid var(--border);
}
.chat-panel-messages {
flex: 1;
overflow-y: auto;
padding: 16px;
}
.chat-panel-input {
display: flex;
gap: 8px;
padding: 12px;
border-top: 1px solid var(--border);
}
.chat-panel-input textarea {
flex: 1;
min-height: 44px;
max-height: 120px;
}
/* Modal */
.modal-overlay {
position: fixed;