92 lines
1.8 KiB
SCSS
92 lines
1.8 KiB
SCSS
|
.localrec-participant-stats {
|
||
|
list-style: none;
|
||
|
padding: 0;
|
||
|
width: 100%;
|
||
|
font-weight: 500;
|
||
|
|
||
|
.localrec-participant-stats-item__status-dot {
|
||
|
position: relative;
|
||
|
display: block;
|
||
|
width: 9px;
|
||
|
height: 9px;
|
||
|
border-radius: 50%;
|
||
|
margin: 0 auto;
|
||
|
|
||
|
&.status-on {
|
||
|
background: green;
|
||
|
}
|
||
|
|
||
|
&.status-off {
|
||
|
background: gray;
|
||
|
}
|
||
|
|
||
|
&.status-unknown {
|
||
|
background: darkgoldenrod;
|
||
|
}
|
||
|
|
||
|
&.status-error {
|
||
|
background: darkred;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.localrec-participant-stats-item__status,
|
||
|
.localrec-participant-stats-item__name,
|
||
|
.localrec-participant-stats-item__sessionid {
|
||
|
display: inline-block;
|
||
|
margin: 5px 0;
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
.localrec-participant-stats-item__status {
|
||
|
width: 5%;
|
||
|
}
|
||
|
.localrec-participant-stats-item__name {
|
||
|
width: 40%;
|
||
|
}
|
||
|
.localrec-participant-stats-item__sessionid {
|
||
|
width: 55%;
|
||
|
}
|
||
|
|
||
|
.localrec-participant-stats-item__name,
|
||
|
.localrec-participant-stats-item__sessionid {
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.localrec-control-info-label {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.localrec-control-info-label:after {
|
||
|
content: ' ';
|
||
|
}
|
||
|
|
||
|
.localrec-control-action-link {
|
||
|
display: inline-block;
|
||
|
line-height: 1.5em;
|
||
|
|
||
|
a {
|
||
|
cursor: pointer;
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.localrec-control-action-link:before {
|
||
|
color: $linkFontColor;
|
||
|
content: '\2022';
|
||
|
font-size: 1.5em;
|
||
|
padding: 0 10px;
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
|
||
|
.localrec-control-action-link:first-child:before {
|
||
|
content: '';
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.localrec-control-action-links {
|
||
|
font-weight: bold;
|
||
|
margin-top: 10px;
|
||
|
white-space: nowrap;
|
||
|
}
|