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;
|
2022-03-28 10:48:52 +02:00
|
|
|
color: var(--ov-text-color);
|
2022-01-19 17:24:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.buttonsContainer {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
2022-04-25 16:17:32 +02: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-04-25 16:17:32 +02: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-04-25 16:17:32 +02:00
|
|
|
#media-buttons-container button,
|
|
|
|
#menu-buttons-container button {
|
2022-02-28 12:12:16 +01:00
|
|
|
border-radius: var(--ov-buttons-radius);
|
|
|
|
}
|
|
|
|
|
|
|
|
#branding-logo {
|
2022-04-18 13:33:53 +02:00
|
|
|
background-color: var(--ov-logo-background-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-04-25 16:17:32 +02: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;
|
2022-04-25 16:17:32 +02:00
|
|
|
}
|
|
|
|
#session-info-container {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.colapsed {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#recording-tag {
|
|
|
|
padding: 0 15px;
|
|
|
|
background-color: var(--ov-warn-color);
|
|
|
|
border-radius: var(--ov-panel-radius);
|
|
|
|
width: fit-content;
|
|
|
|
font-size: 12px;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 20px;
|
|
|
|
margin: auto;
|
|
|
|
animation: blinker 1.5s linear infinite;
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2022-04-25 16:17:32 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
#recording-tag mat-icon {
|
|
|
|
font-size: 16px;
|
|
|
|
display: inline;
|
|
|
|
vertical-align: sub;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#point {
|
2022-01-19 17:24:11 +01:00
|
|
|
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;
|
2022-04-25 16:17:32 +02:00
|
|
|
}
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2022-04-25 16:17:32 +02:00
|
|
|
#leave-btn {
|
|
|
|
background-color: var(--ov-warn-color) !important;
|
|
|
|
border-radius: var(--ov-leave-button-radius) !important;
|
|
|
|
width: 60px !important;
|
|
|
|
}
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2022-04-25 16:17:32 +02:00
|
|
|
.tooltipList {
|
2022-01-19 17:24:11 +01:00
|
|
|
white-space: pre;
|
2022-04-25 16:17:32 +02:00
|
|
|
}
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2022-04-25 16:17:32 +02:00
|
|
|
#navChatButton .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
2022-01-19 17:24:11 +01:00
|
|
|
left: -17px;
|
2022-04-25 16:17:32 +02:00
|
|
|
}
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2022-04-25 16:17:32 +02:00
|
|
|
#navChatButton .mat-badge-medium.mat-badge-above .mat-badge-content {
|
2022-01-19 17:24:11 +01:00
|
|
|
top: -6px;
|
2022-04-25 16:17:32 +02:00
|
|
|
}
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2022-04-25 16:17:32 +02:00
|
|
|
.mat-icon-button[disabled] {
|
2022-01-19 17:24:11 +01:00
|
|
|
color: #fff;
|
2022-04-25 16:17:32 +02:00
|
|
|
}
|
|
|
|
@media (max-width: 750px) {
|
2022-03-16 12:15:22 +01:00
|
|
|
#session-name {
|
2022-04-25 16:17:32 +02:00
|
|
|
display: none;
|
2022-01-19 17:24:11 +01:00
|
|
|
}
|
2022-04-25 16:17:32 +02:00
|
|
|
}
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2022-04-25 16:17:32 +02:00
|
|
|
@media (max-width: 850px) {
|
2022-02-28 12:12:16 +01:00
|
|
|
#branding-logo {
|
2022-04-25 16:17:32 +02:00
|
|
|
display: none;
|
2022-01-19 17:24:11 +01:00
|
|
|
}
|
2022-04-25 16:17:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
::ng-deep .mat-menu-panel {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes blinker {
|
|
|
|
50% { opacity: 0.2; }
|
2022-01-19 17:24:11 +01:00
|
|
|
}
|