2022-01-19 17:24:11 +01:00
|
|
|
#toolbar {
|
2022-03-17 13:44:45 +01:00
|
|
|
height: 100%;
|
2022-01-19 17:24:11 +01:00
|
|
|
background-color: transparent;
|
|
|
|
color: var(--ov-light-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttonsContainer {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
2022-03-22 16:14:24 +01:00
|
|
|
#info-container>div {
|
2022-01-19 17:24:11 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2022-03-07 15:50:27 +01:00
|
|
|
#media-buttons-container {
|
2022-03-09 12:34:10 +01:00
|
|
|
max-height: 100% !important;
|
2022-03-07 15:50:27 +01:00
|
|
|
}
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2022-03-10 11:42:48 +01:00
|
|
|
#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 {
|
2022-01-19 17:24:11 +01:00
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
background-color: var(--ov-secondary-color);
|
|
|
|
margin: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.warn-btn {
|
|
|
|
background-color: var(--ov-warn-color) !important;
|
|
|
|
}
|
|
|
|
|
2022-02-14 14:12:58 +01:00
|
|
|
.active-btn, ::ng-deep .active-btn {
|
2022-01-19 17:24:11 +01:00
|
|
|
background-color: var(--ov-tertiary-color) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#media-buttons-container mat-icon {
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
2022-02-28 12:12:16 +01:00
|
|
|
#media-buttons-container button, #menu-buttons-container button {
|
|
|
|
border-radius: var(--ov-buttons-radius);
|
|
|
|
}
|
|
|
|
|
|
|
|
#branding-logo {
|
2022-01-19 17:24:11 +01:00
|
|
|
background-color: var(--ov-dark-color);
|
2022-02-28 12:12:16 +01:00
|
|
|
border-radius: var(--ov-panel-radius);
|
2022-01-19 17:24:11 +01:00
|
|
|
max-width: 35px;
|
|
|
|
max-height: 35px;
|
|
|
|
padding: 10px;
|
2022-02-28 12:12:16 +01:00
|
|
|
}
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2022-03-16 12:15:22 +01:00
|
|
|
#session-name {
|
2022-01-19 17:24:11 +01:00
|
|
|
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;
|
2022-02-28 12:12:16 +01:00
|
|
|
border-radius: var(--ov-buttons-radius);
|
2022-01-19 17:24:11 +01:00
|
|
|
background-color: #ffa600;
|
|
|
|
border: 1px solid #000;
|
|
|
|
z-index: 99999;
|
|
|
|
}
|
|
|
|
|
|
|
|
#leave-btn {
|
|
|
|
background-color: var(--ov-warn-color) !important;
|
2022-02-28 12:12:16 +01:00
|
|
|
border-radius: var(--ov-leave-button-radius) !important;
|
2022-01-19 17:24:11 +01:00
|
|
|
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) {
|
2022-03-16 12:15:22 +01:00
|
|
|
#session-name {
|
2022-01-19 17:24:11 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 850px) {
|
2022-02-28 12:12:16 +01:00
|
|
|
#branding-logo {
|
2022-01-19 17:24:11 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|