Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add Live API video recording
  • Loading branch information
dlarocque committed Oct 17, 2025
commit d8bf234b3d5f9d499f4cd652b3fa7c40d591e582
103 changes: 102 additions & 1 deletion ai/ai-react-app/src/views/LiveView.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,25 +77,126 @@
cursor: not-allowed;
}



.errorMessage {

background-color: var(--color-error-bg);

color: var(--color-error-text);

border: 1px solid var(--color-error-border);

padding: 10px 16px;

border-radius: 4px;

margin-top: 20px;

max-width: 500px;

white-space: pre-wrap;

}



.controlsContainer {

display: flex;

flex-direction: column;

gap: 16px;

margin-top: 20px;

padding-top: 20px;

border-top: 1px solid var(--color-border-primary);

width: 100%;

max-width: 500px;

align-items: center;

}



.videoControls {

display: flex;

gap: 10px;

align-items: center;

justify-content: center;

width: 100%;

}



.videoSourceSelect {

padding: 12px 16px;

background-color: var(--color-surface-primary);

border: 1px solid var(--color-border-secondary);

color: var(--color-text-primary);

border-radius: 24px;

font-size: 1rem;

cursor: pointer;

transition: border-color 0.15s ease;

}

.videoSourceSelect:hover {

border-color: var(--brand-gray-50);

}

.videoSourceSelect:disabled {

opacity: 0.5;

cursor: not-allowed;

background-color: var(--color-surface-tertiary);

}



@keyframes pulse {

0% {

box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.7);

}

70% {

box-shadow: 0 0 0 10px rgba(52, 168, 83, 0);

}

100% {

box-shadow: 0 0 0 0 rgba(52, 168, 83, 0);

}
}

}
Loading
Loading