mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 11:17:57 +00:00
* Adds a dropdown indicator which displays the status of the internet connection. * It uses the same data as `https://network.callstats.io`. * The algorithm for the strings displayed to the user is also the one used on `network.callstas.io`.
61 lines
985 B
SCSS
61 lines
985 B
SCSS
.con-status {
|
|
position: absolute;
|
|
top: 40px;
|
|
width: 100%;
|
|
z-index: $toolbarZ + 3;
|
|
|
|
&-container {
|
|
background: rgba(28, 32, 37, .5);
|
|
border-radius: 3px;
|
|
color: #fff;
|
|
font-size: 13px;
|
|
line-height: 20px;
|
|
margin: 0 auto;
|
|
width: 304px;
|
|
}
|
|
|
|
&-header {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 8px;
|
|
}
|
|
|
|
&-circle {
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
padding: 4px;
|
|
}
|
|
|
|
&--good {
|
|
background: #31B76A;
|
|
}
|
|
|
|
&--poor {
|
|
background: #E12D2D;
|
|
}
|
|
|
|
&--non-optimal {
|
|
background: #E39623;
|
|
}
|
|
|
|
&-arrow {
|
|
&--up {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
&>svg {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
&-text {
|
|
text-align: center;
|
|
}
|
|
|
|
&-details {
|
|
border-top: 1px solid #5E6D7A;
|
|
padding: 16px;
|
|
}
|
|
}
|