diff --git a/www/app/styles/form.scss b/www/app/styles/form.scss new file mode 100644 index 00000000..90eb4a83 --- /dev/null +++ b/www/app/styles/form.scss @@ -0,0 +1,37 @@ +@media (prefers-color-scheme: dark) { + .select-search-container, + .input-container { + --select-search-background: #fff; + --select-search-border: #dce0e8; + --select-search-selected: #1e66f5; + --select-search-text: #000; + --select-search-subtle-text: #6c6f85; + --select-search-highlight: #eff1f5; + } +} + +body.is-dark-mode .select-search-container, +body.is-dark-mode .input-container { + --select-search-background: #fff; + --select-search-border: #dce0e8; + --select-search-selected: #1e66f5; + --select-search-text: #000; + --select-search-subtle-text: #6c6f85; + --select-search-highlight: #eff1f5; +} + +body.is-light-mode .select-search-container, +body.is-light-mode .input-container { + --select-search-background: #fff; + --select-search-border: #dce0e8; + --select-search-selected: #1e66f5; + --select-search-text: #000; + --select-search-subtle-text: #6c6f85; + --select-search-highlight: #eff1f5; +} + +.input-container, +.select-search-container { + max-width: 100%; + width: auto; +} diff --git a/www/app/transcripts/liveTranscription.tsx b/www/app/transcripts/liveTranscription.tsx index 6e40e7a3..12610415 100644 --- a/www/app/transcripts/liveTranscription.tsx +++ b/www/app/transcripts/liveTranscription.tsx @@ -6,12 +6,10 @@ type LiveTranscriptionProps = { export default function LiveTrancription(props: LiveTranscriptionProps) { return (
- {props.translateText ? props.translateText : props.text} -
+{props.text}
{props.translateText && ( -- {props.text} +
+ {props.translateText}
)}Reflector is a transcription and summarization pipeline that - transforms audio into knowledge. The output is meeting minutes and - topic summaries enabling topic-specific analyses stored in your - systems of record. This is accomplished on your infrastructure – - without 3rd parties – keeping your data private, secure, and - organized. + transforms audio into knowledge. + + The output is meeting minutes and topic summaries enabling + topic-specific analyses stored in your systems of record. This + is accomplished on your infrastructure – without 3rd parties – + keeping your data private, secure, and organized. +
+ In order to use Reflector, we kindly request permission to access + your microphone during meetings and events. +
+Checking permission...
- ) : permissionOk ? ( - <> Microphone permission granted > - ) : ( - <> + {loading ? ( +Checking permission...
+ ) : permissionOk ? ( +Microphone permission granted
+ ) : permissionDenied ? (
- In order to use Reflector, we kindly request permission to
- access your microphone during meetings and events.
-
-
- {permissionDenied &&
- "Permission to use your microphone was denied, please change the permission setting in your browser and refresh this page."}
+ Permission to use your microphone was denied, please change the
+ permission setting in your browser and refresh this page.