2024-01-16 14:29:33 +08:00
|
|
|
.full-page-chat {
|
|
|
|
#main-chat-outlet.chat-view {
|
|
|
|
grid-template-areas:
|
|
|
|
"list"
|
|
|
|
"footer";
|
|
|
|
}
|
|
|
|
|
|
|
|
.channels-list {
|
|
|
|
grid-area: list;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.c-footer {
|
|
|
|
grid-area: footer;
|
|
|
|
background: var(--secondary);
|
|
|
|
border-top: 1px solid var(--primary-low);
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
justify-content: space-around;
|
|
|
|
position: sticky;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2024-01-16 18:12:36 +08:00
|
|
|
padding-bottom: env(safe-area-inset-bottom);
|
2024-01-16 14:29:33 +08:00
|
|
|
|
|
|
|
&__item {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
flex-basis: 33%;
|
|
|
|
flex-shrink: 0;
|
|
|
|
padding-block: 0.75rem;
|
|
|
|
height: 100%;
|
2024-01-29 10:38:14 +08:00
|
|
|
position: relative;
|
2024-01-16 14:29:33 +08:00
|
|
|
|
|
|
|
&.--active {
|
|
|
|
.d-icon,
|
|
|
|
.d-button-label {
|
|
|
|
color: var(--quaternary);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.d-icon {
|
|
|
|
margin-right: 0;
|
|
|
|
font-size: var(--font-up-4);
|
|
|
|
color: var(--primary-medium);
|
|
|
|
|
|
|
|
&.d-icon-discourse-threads {
|
|
|
|
font-size: var(--font-up-3); //visual correction
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.d-button-label {
|
|
|
|
font-size: var(--font-down-1-rem);
|
|
|
|
color: var(--primary-medium);
|
|
|
|
}
|
2024-01-29 10:38:14 +08:00
|
|
|
|
|
|
|
.chat-channel-unread-indicator,
|
|
|
|
.chat-channel-unread-indicator.-urgent {
|
|
|
|
top: 0.25rem;
|
|
|
|
right: unset;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: 0.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-channel-unread-indicator:not(.-urgent) {
|
|
|
|
width: 11px;
|
|
|
|
height: 11px;
|
|
|
|
}
|
2024-01-16 14:29:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-01-17 16:45:25 +08:00
|
|
|
|
|
|
|
.has-full-page-chat div#reply-control {
|
|
|
|
display: none;
|
|
|
|
}
|