mirror of
https://github.com/element-hq/element-call.git
synced 2026-05-03 16:17:20 +00:00
33ef680c41
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
82 lines
1.4 KiB
CSS
82 lines
1.4 KiB
CSS
.videoTileSettingsModal {
|
|
width: 700px;
|
|
height: 316px;
|
|
display: flex;
|
|
}
|
|
|
|
.content {
|
|
position: relative;
|
|
margin: 27px 34px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.localVolumePercentage {
|
|
width: 3ch;
|
|
}
|
|
|
|
.localVolumeSlider[type="range"] {
|
|
-ms-appearance: none;
|
|
-moz-appearance: none;
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
|
|
cursor: pointer;
|
|
width: 100%;
|
|
}
|
|
|
|
.localVolumeSlider[type="range"]::-moz-range-track {
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
|
|
height: 4px;
|
|
}
|
|
.localVolumeSlider[type="range"]::-ms-track {
|
|
-ms-appearance: none;
|
|
appearance: none;
|
|
|
|
height: 4px;
|
|
}
|
|
.localVolumeSlider[type="range"]::-webkit-slider-runnable-track {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
|
|
height: 4px;
|
|
}
|
|
|
|
.localVolumeSlider[type="range"]::-moz-range-thumb {
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
|
|
height: 16px;
|
|
width: 16px;
|
|
margin-top: -6px;
|
|
|
|
border-radius: 100%;
|
|
background: var(--accent);
|
|
}
|
|
.localVolumeSlider[type="range"]::-ms-thumb {
|
|
-ms-appearance: none;
|
|
appearance: none;
|
|
|
|
height: 16px;
|
|
width: 16px;
|
|
margin-top: -6px;
|
|
|
|
border-radius: 100%;
|
|
background: var(--accent);
|
|
}
|
|
.localVolumeSlider[type="range"]::-webkit-slider-thumb {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
|
|
height: 16px;
|
|
width: 16px;
|
|
margin-top: -6px;
|
|
|
|
border-radius: 100%;
|
|
background: var(--accent);
|
|
}
|