2017-03-29 17:43:30 +00:00
|
|
|
.device-selection {
|
|
|
|
color: $feedbackInputTextColor;
|
|
|
|
|
|
|
|
.device-selectors {
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
> div {
|
2017-04-17 21:02:36 +00:00
|
|
|
display: block;
|
2017-03-29 17:43:30 +00:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> div:last-child {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2017-04-17 21:02:36 +00:00
|
|
|
|
|
|
|
.device-selector-icon {
|
2017-04-21 02:24:55 +00:00
|
|
|
align-self: center;
|
2017-04-17 21:02:36 +00:00
|
|
|
color: inherit;
|
|
|
|
font-size: 20px;
|
2017-04-21 02:24:55 +00:00
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* device-selector-trigger stylings attempt to mimic AtlasKit button */
|
|
|
|
.device-selector-trigger {
|
|
|
|
background-color: rgba(9, 30, 66, 0.04);
|
|
|
|
border-radius: 3px;
|
|
|
|
color: #505f79;
|
|
|
|
display: flex;
|
|
|
|
height: 2.3em;
|
|
|
|
justify-content: space-between;
|
|
|
|
line-height: 2.3em;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0 8px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: rgba(9,30,66,.08);
|
|
|
|
}
|
|
|
|
}
|
2017-04-25 16:15:15 +00:00
|
|
|
.device-selector-trigger-disabled {
|
|
|
|
.device-selector-trigger {
|
|
|
|
color: #a5adba;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
2017-04-21 02:24:55 +00:00
|
|
|
|
|
|
|
.device-selector-trigger-text {
|
|
|
|
overflow: hidden;
|
|
|
|
margin-left: 8px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 100%;
|
2017-04-17 21:02:36 +00:00
|
|
|
}
|
2017-03-29 17:43:30 +00:00
|
|
|
}
|
|
|
|
|
2017-04-17 21:02:36 +00:00
|
|
|
.device-selection-column {
|
|
|
|
box-sizing: border-box;
|
2017-03-29 17:43:30 +00:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-04-17 21:02:36 +00:00
|
|
|
|
|
|
|
&.column-selectors {
|
|
|
|
margin-left: 15px;
|
|
|
|
width: 45%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.column-video {
|
|
|
|
width: 50%;
|
|
|
|
}
|
2017-03-29 17:43:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.device-selection-video-container {
|
2017-04-17 21:02:36 +00:00
|
|
|
border-radius: 3px;
|
|
|
|
margin-bottom: 5px;
|
2017-03-29 17:43:30 +00:00
|
|
|
|
|
|
|
.video-input-preview {
|
2017-04-17 21:02:36 +00:00
|
|
|
margin-top: 2px;
|
2017-03-29 17:43:30 +00:00
|
|
|
position: relative;
|
|
|
|
|
2017-04-17 21:02:36 +00:00
|
|
|
> video {
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
2017-04-26 02:15:19 +00:00
|
|
|
.video-input-preview-error {
|
2017-03-29 17:43:30 +00:00
|
|
|
color: $participantNameColor;
|
|
|
|
display: none;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
text-align: center;
|
|
|
|
top: 50%;
|
|
|
|
}
|
|
|
|
|
2017-04-26 02:15:19 +00:00
|
|
|
&.video-preview-has-error {
|
2017-04-19 21:46:20 +00:00
|
|
|
background: black;
|
|
|
|
|
2017-04-26 02:15:19 +00:00
|
|
|
.video-input-preview-error {
|
2017-04-19 21:46:20 +00:00
|
|
|
display: block;
|
|
|
|
}
|
2017-03-29 17:43:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.video-input-preview-display {
|
2017-04-19 21:46:20 +00:00
|
|
|
height: auto;
|
2017-03-29 17:43:30 +00:00
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.audio-output-preview {
|
2017-04-17 21:02:36 +00:00
|
|
|
font-size: 14px;
|
|
|
|
margin-top: 10px;
|
2017-03-29 17:43:30 +00:00
|
|
|
a {
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.audio-input-preview {
|
|
|
|
background: #f4f5f7;
|
|
|
|
border-radius: 5px;
|
|
|
|
height: 6px;
|
|
|
|
|
|
|
|
.audio-input-preview-level {
|
|
|
|
background: #0052cc;
|
|
|
|
border-radius: 5px;
|
|
|
|
height: 100%;
|
|
|
|
-webkit-transition: width .1s ease-in-out;
|
|
|
|
-moz-transition: width .1s ease-in-out;
|
|
|
|
-o-transition: width .1s ease-in-out;
|
|
|
|
transition: width .1s ease-in-out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|