2017-08-09 19:40:03 +00:00
|
|
|
.video-quality-dialog {
|
2017-08-15 20:22:32 +00:00
|
|
|
.hide-warning {
|
|
|
|
height: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2017-08-09 19:40:03 +00:00
|
|
|
.video-quality-dialog-title {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-quality-dialog-contents {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 10px;
|
|
|
|
min-width: 250px;
|
|
|
|
|
|
|
|
.video-quality-dialog-slider-container {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-quality-dialog-slider {
|
|
|
|
width: calc(100% - 5px);
|
|
|
|
|
|
|
|
@mixin sliderTrackStyles() {
|
|
|
|
height: 15px;
|
|
|
|
border-radius: 10px;
|
2017-11-09 21:59:16 +00:00
|
|
|
background: rgb(14, 22, 36);
|
2017-08-09 19:40:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-ms-track {
|
|
|
|
@include sliderTrackStyles();
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-range-track {
|
|
|
|
@include sliderTrackStyles();
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-slider-runnable-track {
|
|
|
|
@include sliderTrackStyles();
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin sliderThumbStyles() {
|
|
|
|
top: 50%;
|
|
|
|
border: none;
|
|
|
|
position: relative;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-ms-thumb {
|
|
|
|
@include sliderThumbStyles();
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-range-thumb {
|
|
|
|
@include sliderThumbStyles();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-slider-thumb {
|
|
|
|
@include sliderThumbStyles();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-quality-dialog-labels {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
margin-top: 5px;
|
|
|
|
position: relative;
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-quality-dialog-label-container {
|
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
|
|
|
transform: translate(-50%, 0%);
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
border-radius: 50%;
|
|
|
|
left: 0;
|
|
|
|
height: 6px;
|
|
|
|
margin: 0 auto;
|
|
|
|
pointer-events: none;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: -16px;
|
|
|
|
width: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-quality-dialog-label-container.active {
|
2017-10-06 16:14:45 +00:00
|
|
|
color: $videoQualityActive;
|
2017-08-09 19:40:03 +00:00
|
|
|
|
|
|
|
&::before {
|
2017-10-06 16:14:45 +00:00
|
|
|
background: $videoQualityActive;
|
2017-08-09 19:40:03 +00:00
|
|
|
height: 12px;
|
|
|
|
top: -19px;
|
|
|
|
width: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-quality-dialog-label-container:first-child {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-quality-dialog-label {
|
|
|
|
display: table-caption;
|
|
|
|
word-spacing: unset;
|
|
|
|
}
|
|
|
|
}
|
2017-11-09 21:59:16 +00:00
|
|
|
|
|
|
|
&.video-not-supported {
|
|
|
|
.video-quality-dialog-labels {
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-quality-dialog-slider {
|
|
|
|
@mixin sliderTrackDisabledStyles() {
|
|
|
|
background: rgba(14, 22, 36, 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-ms-track {
|
|
|
|
@include sliderTrackDisabledStyles();
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-range-track {
|
|
|
|
@include sliderTrackDisabledStyles();
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-slider-runnable-track {
|
|
|
|
@include sliderTrackDisabledStyles();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-09 19:40:03 +00:00
|
|
|
}
|
|
|
|
|
2018-03-07 00:28:19 +00:00
|
|
|
.modal-dialog-form {
|
|
|
|
.video-quality-dialog-title {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-16 14:00:16 +00:00
|
|
|
#videoResolutionLabel {
|
|
|
|
z-index: $zindex3 + 1;
|
|
|
|
}
|
2018-04-26 21:24:52 +00:00
|
|
|
|
2018-05-16 14:00:16 +00:00
|
|
|
.large-video-labels {
|
|
|
|
display: flex;
|
|
|
|
position: absolute;
|
|
|
|
top: 30px;
|
|
|
|
right: 30px;
|
|
|
|
transition: right 0.5s;
|
|
|
|
z-index: $zindex3;
|
2017-08-09 19:40:03 +00:00
|
|
|
|
2018-05-16 14:00:16 +00:00
|
|
|
.circular-label {
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-left: 8px;
|
|
|
|
opacity: 0.8;
|
2017-08-09 19:40:03 +00:00
|
|
|
}
|
2018-04-26 21:24:52 +00:00
|
|
|
|
2018-05-16 14:00:16 +00:00
|
|
|
.circular-label {
|
|
|
|
background: #B8C7E0;
|
2018-04-26 21:24:52 +00:00
|
|
|
}
|
|
|
|
|
2018-05-16 14:00:16 +00:00
|
|
|
.circular-label.file {
|
|
|
|
background: #FF5630;
|
2018-04-30 04:30:07 +00:00
|
|
|
}
|
|
|
|
|
2018-07-31 22:20:31 +00:00
|
|
|
.circular-label.local-rec {
|
|
|
|
background: #FF5630;
|
|
|
|
}
|
|
|
|
|
2018-05-16 14:00:16 +00:00
|
|
|
.circular-label.stream {
|
|
|
|
background: #0065FF;
|
2018-04-30 04:30:07 +00:00
|
|
|
}
|
|
|
|
|
2018-05-16 14:00:16 +00:00
|
|
|
.recording-label.center-message {
|
|
|
|
background: $videoStateIndicatorBackground;
|
|
|
|
bottom: 50%;
|
|
|
|
display: block;
|
2018-04-26 21:24:52 +00:00
|
|
|
left: 50%;
|
2018-05-16 14:00:16 +00:00
|
|
|
padding: 10px;
|
|
|
|
position: fixed;
|
2018-04-26 21:24:52 +00:00
|
|
|
transform: translate(-50%, -50%);
|
2018-05-16 14:00:16 +00:00
|
|
|
z-index: $centeredVideoLabelZ;
|
2018-04-26 21:24:52 +00:00
|
|
|
}
|
2017-08-09 19:40:03 +00:00
|
|
|
}
|
|
|
|
|
2018-05-16 14:00:16 +00:00
|
|
|
.circular-label {
|
|
|
|
background: $videoStateIndicatorBackground;
|
|
|
|
border-radius: 50%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
cursor: default;
|
|
|
|
font-size: 13px;
|
|
|
|
height: $videoStateIndicatorSize;
|
|
|
|
line-height: $videoStateIndicatorSize;
|
|
|
|
text-align: center;
|
|
|
|
min-width: $videoStateIndicatorSize;
|
2017-08-09 19:40:03 +00:00
|
|
|
}
|