mirror of
https://github.com/element-hq/element-call.git
synced 2026-08-15 00:39:49 +00:00
- Add camera video quality controls (resolution/framerate/bitrate/codec) to Settings > Video, mirroring the screen share settings UI - Add audio processing toggles (echo cancellation, noise suppression, auto gain control) to Settings > Audio, replacing URL-param-only controls - Display raw values inline on all sliders (framerate, bitrate, volume) - Add config-seeded defaults: config.json media_quality values now seed Setting defaults for users who haven't explicitly set preferences - Camera settings are applied when joining a call via ConnectionFactory Signed-off-by: Ryan Emmick <ryanemmick4@gmail.com>
60 lines
1.1 KiB
CSS
60 lines
1.1 KiB
CSS
/*
|
|
Copyright 2022-2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
.settingsModal {
|
|
block-size: 550px;
|
|
}
|
|
|
|
.settingsModal p {
|
|
color: var(--cpd-color-text-secondary);
|
|
}
|
|
|
|
.fieldRowText {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.volumeSlider {
|
|
margin-top: var(--cpd-space-2x);
|
|
}
|
|
|
|
.volumeSlider > label {
|
|
margin-bottom: var(--cpd-space-1x);
|
|
display: block;
|
|
}
|
|
|
|
.volumeSlider > span {
|
|
max-width: 20em;
|
|
}
|
|
|
|
.volumeSlider > p {
|
|
color: var(--cpd-color-text-secondary);
|
|
}
|
|
|
|
.volumeSlider > select {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 8px 12px;
|
|
margin-top: var(--cpd-space-1x);
|
|
border: 1px solid var(--cpd-color-border-interactive-primary);
|
|
border-radius: 4px;
|
|
background-color: var(--cpd-color-bg-canvas-default);
|
|
color: var(--cpd-color-text-primary);
|
|
font-size: var(--font-size-body);
|
|
font-family: inherit;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.volumeSlider > select:focus {
|
|
outline: none;
|
|
border-color: var(--cpd-color-text-link-external);
|
|
}
|
|
|
|
.settingValue {
|
|
font-weight: normal;
|
|
color: var(--cpd-color-text-secondary);
|
|
}
|