2021-01-04 13:30:23 +00:00
|
|
|
.drawer-portal {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
z-index: $drawerZ;
|
2021-07-13 06:50:08 +00:00
|
|
|
border-radius: 16px 16px 0 0;
|
2021-10-04 14:07:05 +00:00
|
|
|
|
|
|
|
&.notification-portal {
|
|
|
|
z-index: $dropdownZ;
|
|
|
|
}
|
2021-01-04 13:30:23 +00:00
|
|
|
}
|
|
|
|
|
2021-07-20 08:30:12 +00:00
|
|
|
.drawer-portal::after {
|
|
|
|
content: '';
|
|
|
|
background-color: $participantsPaneBgColor;
|
|
|
|
margin-bottom: env(safe-area-inset-bottom, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.drawer-menu-container {
|
|
|
|
height: 100vh;
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
}
|
|
|
|
|
2021-01-04 13:30:23 +00:00
|
|
|
.drawer-menu {
|
2021-12-13 13:51:05 +00:00
|
|
|
overflow-y: auto;
|
2021-07-13 06:50:08 +00:00
|
|
|
margin-bottom: env(safe-area-inset-bottom, 0);
|
2021-07-20 08:30:12 +00:00
|
|
|
width: 100%;
|
2021-01-04 13:30:23 +00:00
|
|
|
|
|
|
|
.drawer-toggle {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 44px;
|
|
|
|
cursor: pointer;
|
|
|
|
|
2021-02-04 13:24:25 +00:00
|
|
|
svg {
|
|
|
|
fill: none;
|
2021-01-04 13:30:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&#{&} .overflow-menu {
|
|
|
|
margin: auto;
|
|
|
|
font-size: 1.2em;
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
2021-07-13 06:50:08 +00:00
|
|
|
height: calc(80vh - 144px - 64px);
|
|
|
|
overflow-y: auto;
|
2021-01-04 13:30:23 +00:00
|
|
|
|
|
|
|
.overflow-menu-item {
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: 48px;
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
|
|
|
align-items: center;
|
|
|
|
color: $overflowMenuItemColor;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
2021-02-04 13:24:25 +00:00
|
|
|
font-size: 16px;
|
2021-01-04 13:30:23 +00:00
|
|
|
|
|
|
|
div {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.unclickable {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2021-02-04 13:24:25 +00:00
|
|
|
@media (hover: hover) and (pointer: fine) {
|
|
|
|
&.unclickable:hover {
|
|
|
|
background: inherit;
|
|
|
|
}
|
2021-01-04 13:30:23 +00:00
|
|
|
}
|
|
|
|
&.disabled {
|
|
|
|
cursor: initial;
|
|
|
|
color: #3b475c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.profile-text {
|
2021-02-04 13:24:25 +00:00
|
|
|
max-width: 100%;
|
2021-01-04 13:30:23 +00:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|