mirror of https://github.com/OpenVidu/openvidu.git
173 lines
2.9 KiB
CSS
173 lines
2.9 KiB
CSS
#toolbar {
|
|
height: 100%;
|
|
background-color: transparent;
|
|
color: var(--ov-text-color);
|
|
}
|
|
|
|
.buttonsContainer {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
#info-container > div {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#media-buttons-container {
|
|
max-height: 100% !important;
|
|
}
|
|
|
|
#media-buttons-container > button,
|
|
::ng-deep #media-buttons-container > button,
|
|
#media-buttons-container:not(#media-buttons-container > button) button,
|
|
/* Applying css for external additional buttons*/
|
|
::ng-deep #media-buttons-container:not(#media-buttons-container > button) button {
|
|
width: 40px;
|
|
height: 40px;
|
|
background-color: var(--ov-secondary-color);
|
|
margin: 6px;
|
|
}
|
|
|
|
.warn-btn {
|
|
background-color: var(--ov-warn-color) !important;
|
|
}
|
|
|
|
.active-btn,
|
|
::ng-deep .active-btn {
|
|
background-color: var(--ov-tertiary-color) !important;
|
|
}
|
|
|
|
#media-buttons-container mat-icon {
|
|
font-size: 24px;
|
|
}
|
|
|
|
#media-buttons-container button,
|
|
#menu-buttons-container button {
|
|
border-radius: var(--ov-buttons-radius);
|
|
}
|
|
|
|
#branding-logo {
|
|
background-color: var(--ov-logo-background-color);
|
|
border-radius: var(--ov-panel-radius);
|
|
max-width: 35px;
|
|
max-height: 35px;
|
|
padding: 10px;
|
|
}
|
|
|
|
#session-name {
|
|
font-family: 'Ubuntu', sans-serif;
|
|
font-weight: bold;
|
|
font-size: 15px;
|
|
height: fit-content;
|
|
padding: 0px 15px;
|
|
}
|
|
#session-info-container {
|
|
display: flex;
|
|
}
|
|
|
|
.colapsed {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.recording-tag,
|
|
.broadcasting-tag {
|
|
padding: 0 10px;
|
|
border-radius: var(--ov-panel-radius);
|
|
width: fit-content;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
line-height: 20px;
|
|
margin: auto;
|
|
}
|
|
|
|
.recording-tag {
|
|
background-color: var(--ov-warn-color);
|
|
}
|
|
.broadcasting-tag {
|
|
background-color: #5903ca;
|
|
}
|
|
|
|
.recording-tag mat-icon,
|
|
.broadcasting-tag mat-icon {
|
|
font-size: 16px;
|
|
display: inline;
|
|
vertical-align: sub;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
#broadcasting-btn > mat-icon {
|
|
color: #5903ca;
|
|
}
|
|
|
|
.blink {
|
|
animation: blinker 1.5s linear infinite;
|
|
}
|
|
|
|
#point {
|
|
width: 10px;
|
|
height: 10px;
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 33px;
|
|
border-radius: var(--ov-buttons-radius);
|
|
background-color: #ffa600;
|
|
border: 1px solid #000;
|
|
z-index: 99999;
|
|
}
|
|
|
|
#leave-btn {
|
|
background-color: var(--ov-warn-color) !important;
|
|
border-radius: var(--ov-leave-button-radius) !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;
|
|
}
|
|
.divider {
|
|
margin: 8px 0px;
|
|
}
|
|
::ng-deep .mat-menu-item {
|
|
/* margin-bottom: 10px; */
|
|
height: 40px;
|
|
line-height: 40px;
|
|
}
|
|
|
|
@media (max-width: 750px) {
|
|
#session-name {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 850px) {
|
|
#branding-logo {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 550px) {
|
|
#toolbar {
|
|
padding: 0px;
|
|
place-content: space-evenly;
|
|
}
|
|
}
|
|
|
|
@keyframes blinker {
|
|
50% {
|
|
opacity: 0.3;
|
|
}
|
|
}
|