2020-04-10 11:51:36 +00:00
|
|
|
/**
|
|
|
|
* Call window
|
|
|
|
*/
|
|
|
|
|
|
|
|
#callsTarget {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0px;
|
|
|
|
visibility: hidden;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.call-window {
|
2020-04-12 16:36:40 +00:00
|
|
|
width: 338px;
|
2020-04-10 11:51:36 +00:00
|
|
|
min-width: 300px;
|
2020-04-12 16:36:40 +00:00
|
|
|
max-width: 100%;
|
2020-04-10 11:51:36 +00:00
|
|
|
min-height: 174px;
|
|
|
|
position: absolute;
|
|
|
|
top: 100px;
|
|
|
|
right: 10px;
|
|
|
|
z-index: 100;
|
|
|
|
border: 1px black solid;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
background-color: #000000b3;
|
|
|
|
visibility: visible;
|
2020-04-10 11:57:43 +00:00
|
|
|
}
|
|
|
|
|
2020-04-13 10:11:38 +00:00
|
|
|
.call-window.audio-only {
|
|
|
|
min-height: unset;
|
|
|
|
}
|
|
|
|
|
2020-04-13 10:04:51 +00:00
|
|
|
/* This could be moved to conversation page stylesheet also */
|
2020-04-13 09:18:04 +00:00
|
|
|
.call-window.embedded {
|
2020-04-13 10:04:51 +00:00
|
|
|
position: unset;
|
2020-04-13 09:18:04 +00:00
|
|
|
top: unset !important;
|
|
|
|
left: unset !important;
|
2020-04-13 10:04:51 +00:00
|
|
|
width: 90%;
|
2020-04-13 09:18:04 +00:00
|
|
|
height: 150px;
|
2020-04-13 10:04:51 +00:00
|
|
|
margin: 10px auto;
|
2020-04-13 09:18:04 +00:00
|
|
|
}
|
2020-04-13 10:11:38 +00:00
|
|
|
.call-window.embedded.audio-only {
|
|
|
|
height: 90px;
|
|
|
|
}
|
2020-04-13 09:18:04 +00:00
|
|
|
|
2020-04-10 11:57:43 +00:00
|
|
|
.call-window .head {
|
|
|
|
color: white;
|
|
|
|
padding: 5px;
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.call-window .head .fa-phone {
|
|
|
|
margin-right: 5px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2020-04-13 12:55:22 +00:00
|
|
|
.call-window .head .title {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2020-04-10 11:57:43 +00:00
|
|
|
.call-window .head a {
|
|
|
|
color: inherit;
|
2020-04-10 14:55:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.call-window .members-area {
|
|
|
|
color: white;
|
|
|
|
font-size: 80%;
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.call-window .members-area span {
|
|
|
|
margin: 0px 5px;
|
2020-04-11 12:18:27 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 16:06:29 +00:00
|
|
|
.call-window .members-area span.ready {
|
|
|
|
color: rgb(1, 218, 1);
|
|
|
|
}
|
|
|
|
|
2020-04-11 12:18:27 +00:00
|
|
|
.call-window .videos-area {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2020-04-12 15:40:50 +00:00
|
|
|
max-width: 100%;
|
2020-04-12 16:36:40 +00:00
|
|
|
flex-wrap: wrap;
|
2020-04-12 17:02:09 +00:00
|
|
|
flex: 1;
|
|
|
|
justify-content: center;
|
2020-04-13 07:35:09 +00:00
|
|
|
overflow: hidden;
|
2020-04-11 12:18:27 +00:00
|
|
|
}
|
|
|
|
|
2020-04-13 07:26:15 +00:00
|
|
|
.call-window .videos-area .video {
|
2020-04-12 15:40:50 +00:00
|
|
|
flex-shrink: 1;
|
|
|
|
flex: 1;
|
|
|
|
max-height: 100%;
|
2020-04-12 16:36:40 +00:00
|
|
|
max-width: 100%;
|
2020-04-13 07:26:15 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2020-04-13 07:35:09 +00:00
|
|
|
flex-direction: column;
|
2020-04-13 07:26:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.call-window .videos-area .video video {
|
2020-04-13 07:39:10 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2020-04-12 16:52:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.call-window .window-bottom {
|
|
|
|
height: 40px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
align-items: center;
|
2020-04-13 12:56:30 +00:00
|
|
|
background-color: black;
|
2020-04-12 16:52:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.call-window .window-bottom div {
|
|
|
|
color: #fff6;
|
|
|
|
flex: 1;
|
|
|
|
text-align: center;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.call-window .window-bottom div.selected {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.call-window .window-bottom div:hover {
|
|
|
|
background-color: #ffffff4d;
|
|
|
|
}
|
|
|
|
|
|
|
|
.call-window .window-bottom div:active {
|
|
|
|
background-color: #fff3;
|
|
|
|
}
|
|
|
|
|
2020-04-13 14:30:13 +00:00
|
|
|
.call-window .window-bottom div i {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2020-04-12 16:52:56 +00:00
|
|
|
.call-window .window-bottom div.hang-up-button {
|
|
|
|
color: #dd4b39;
|
2020-04-12 16:57:56 +00:00
|
|
|
}
|
|
|
|
|
2020-04-13 14:30:13 +00:00
|
|
|
.call-window .window-bottom .dropdown-menu {
|
2020-04-13 16:47:28 +00:00
|
|
|
left: -125px;
|
2020-04-13 14:30:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.call-window .window-bottom .dropdown-menu i {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2020-04-12 16:57:56 +00:00
|
|
|
/**
|
|
|
|
* Responsive mode
|
|
|
|
*/
|
|
|
|
@media screen and (max-width: 730px) {
|
|
|
|
|
|
|
|
#callsTarget {
|
|
|
|
z-index: 1030;
|
|
|
|
}
|
|
|
|
|
|
|
|
.call-window {
|
|
|
|
width: 100%;
|
|
|
|
position: fixed;
|
|
|
|
left: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.call-window .videos-area {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|