Add UI for local volume control
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
4ad4cff23f
commit
eda8404144
6 changed files with 222 additions and 19 deletions
76
src/video-grid/VideoTileSettingsModal.module.css
Normal file
76
src/video-grid/VideoTileSettingsModal.module.css
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
.content {
|
||||
margin: 27px 34px;
|
||||
}
|
||||
|
||||
.localVolumePercentage {
|
||||
width: 40px;
|
||||
}
|
||||
|
||||
.localVolumeSlider[type="range"] {
|
||||
-ms-appearance: none;
|
||||
-moz-appearance: none;
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
|
||||
cursor: pointer;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.localVolumeSlider[type="range"]::-moz-range-track {
|
||||
-ms-appearance: none;
|
||||
-moz-appearance: none;
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
|
||||
height: 4px;
|
||||
}
|
||||
.localVolumeSlider[type="range"]::-ms-track {
|
||||
-ms-appearance: none;
|
||||
-moz-appearance: none;
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
|
||||
height: 4px;
|
||||
}
|
||||
.localVolumeSlider[type="range"]::-webkit-slider-runnable-track {
|
||||
-ms-appearance: none;
|
||||
-moz-appearance: none;
|
||||
-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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue