2022-08-02 14:30:33 +02:00
|
|
|
.videoTileSettingsModal {
|
|
|
|
width: 700px;
|
|
|
|
height: 316px;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2022-07-15 11:18:56 +02:00
|
|
|
.content {
|
2022-08-02 14:30:33 +02:00
|
|
|
position: relative;
|
2022-07-15 11:18:56 +02:00
|
|
|
margin: 27px 34px;
|
2022-08-02 14:30:33 +02:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2022-07-15 11:18:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.localVolumePercentage {
|
2022-07-28 09:02:27 +02:00
|
|
|
width: 3ch;
|
2022-07-15 11:18:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.localVolumeSlider[type="range"] {
|
|
|
|
-ms-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
|
2022-08-12 10:25:58 +02:00
|
|
|
background-color: transparent;
|
|
|
|
--slider-color: var(--quinary-content);
|
|
|
|
--slider-height: 4px;
|
|
|
|
--thumb-color: var(--accent);
|
2022-08-12 20:48:39 +02:00
|
|
|
--thumb-radius: 100%;
|
2022-08-12 10:25:58 +02:00
|
|
|
--thumb-size: 16px;
|
|
|
|
--thumb-margin-top: -6px;
|
|
|
|
|
2022-07-15 11:18:56 +02:00
|
|
|
cursor: pointer;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.localVolumeSlider[type="range"]::-moz-range-track {
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
|
2022-08-12 10:25:58 +02:00
|
|
|
background-color: var(--slider-color);
|
|
|
|
height: var(--slider-height);
|
2022-07-15 11:18:56 +02:00
|
|
|
}
|
|
|
|
.localVolumeSlider[type="range"]::-ms-track {
|
|
|
|
-ms-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
|
2022-08-12 10:25:58 +02:00
|
|
|
background-color: var(--slider-color);
|
|
|
|
height: var(--slider-height);
|
2022-07-15 11:18:56 +02:00
|
|
|
}
|
|
|
|
.localVolumeSlider[type="range"]::-webkit-slider-runnable-track {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
|
2022-08-12 10:25:58 +02:00
|
|
|
background-color: var(--slider-color);
|
|
|
|
height: var(--slider-height);
|
2022-07-15 11:18:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.localVolumeSlider[type="range"]::-moz-range-thumb {
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
|
2022-08-12 10:25:58 +02:00
|
|
|
height: var(--thumb-size);
|
|
|
|
width: var(--thumb-size);
|
|
|
|
margin-top: var(--thumb-margin-top);
|
2022-08-12 20:48:39 +02:00
|
|
|
border-radius: var(--thumb-radius);
|
2022-08-12 10:25:58 +02:00
|
|
|
background: var(--thumb-color);
|
2022-07-15 11:18:56 +02:00
|
|
|
}
|
|
|
|
.localVolumeSlider[type="range"]::-ms-thumb {
|
|
|
|
-ms-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
|
2022-08-12 10:25:58 +02:00
|
|
|
height: var(--thumb-size);
|
|
|
|
width: var(--thumb-size);
|
|
|
|
margin-top: var(--thumb-margin-top);
|
2022-08-12 20:48:39 +02:00
|
|
|
border-radius: var(--thumb-radius);
|
2022-08-12 10:25:58 +02:00
|
|
|
background: var(--thumb-color);
|
2022-07-15 11:18:56 +02:00
|
|
|
}
|
|
|
|
.localVolumeSlider[type="range"]::-webkit-slider-thumb {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
|
2022-08-12 10:25:58 +02:00
|
|
|
height: var(--thumb-size);
|
|
|
|
width: var(--thumb-size);
|
|
|
|
margin-top: var(--thumb-margin-top);
|
2022-08-12 20:48:39 +02:00
|
|
|
border-radius: var(--thumb-radius);
|
2022-08-12 10:25:58 +02:00
|
|
|
background: var(--thumb-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.localVolumeSlider[type="range"]::-moz-range-progress {
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
|
|
|
|
height: var(--slider-height);
|
|
|
|
background: var(--thumb-color);
|
|
|
|
}
|
|
|
|
.localVolumeSlider[type="range"]::-ms-fill-lower {
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
2022-07-15 11:18:56 +02:00
|
|
|
|
2022-08-12 10:25:58 +02:00
|
|
|
height: var(--slider-height);
|
|
|
|
background: var(--thumb-color);
|
2022-07-15 11:18:56 +02:00
|
|
|
}
|