mirror of https://github.com/OpenVidu/openvidu.git
98 lines
1.6 KiB
CSS
98 lines
1.6 KiB
CSS
#toolbar {
|
|
height: 100%;
|
|
background-color: transparent;
|
|
color: var(--ov-light-color);
|
|
}
|
|
|
|
.buttonsContainer {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
#img-container {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#media-buttons-container button, ::ng-deep #media-buttons-container>.ng-star-inserted {
|
|
width: 40px;
|
|
height: 40px;
|
|
background-color: var(--ov-secondary-color);
|
|
margin: 6px;
|
|
}
|
|
|
|
.warn-btn {
|
|
background-color: var(--ov-warn-color) !important;
|
|
}
|
|
|
|
.active-btn {
|
|
background-color: var(--ov-tertiary-color) !important;
|
|
}
|
|
|
|
#media-buttons-container mat-icon {
|
|
font-size: 24px;
|
|
}
|
|
|
|
#company-logo {
|
|
background-color: var(--ov-dark-color);
|
|
border-radius: 5px;
|
|
max-width: 35px;
|
|
max-height: 35px;
|
|
padding: 10px;
|
|
}
|
|
|
|
#session-title {
|
|
font-family: 'Ubuntu', sans-serif;
|
|
font-weight: bold;
|
|
font-size: 15px;
|
|
height: fit-content;
|
|
padding: 0px 15px;
|
|
}
|
|
|
|
#point {
|
|
width: 10px;
|
|
height: 10px;
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 33px;
|
|
border-radius: 50%;
|
|
background-color: #ffa600;
|
|
border: 1px solid #000;
|
|
z-index: 99999;
|
|
}
|
|
|
|
#leave-btn {
|
|
background-color: var(--ov-warn-color) !important;
|
|
border-radius: 10px !important;
|
|
width: 60px !important;
|
|
}
|
|
|
|
|
|
.tooltipList {
|
|
white-space: pre;
|
|
}
|
|
|
|
|
|
#navChatButton .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
|
left: -17px;
|
|
}
|
|
|
|
#navChatButton .mat-badge-medium.mat-badge-above .mat-badge-content {
|
|
top: -6px;
|
|
}
|
|
|
|
.mat-icon-button[disabled] {
|
|
color: #fff;
|
|
}
|
|
@media (max-width: 750px) {
|
|
#session-title {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 850px) {
|
|
#company-logo {
|
|
display: none;
|
|
}
|
|
} |