mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 22:43:56 +08:00
d0427919f1
Adds a placeholder image + CTA in chat, for empty channel and DM lists. On desktop with drawer mode, we split chat into tabs (like mobile). --------- Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com> Co-authored-by: David Battersby <info@davidbattersby.com> Co-authored-by: Régis Hanol <regis@hanol.fr>
78 lines
1.5 KiB
SCSS
78 lines
1.5 KiB
SCSS
.c-footer {
|
|
grid-area: footer;
|
|
background: var(--secondary);
|
|
border-top: 1px solid var(--primary-low);
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
position: sticky;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
|
|
html.footer-nav-ipad &,
|
|
html.footer-nav-visible & {
|
|
padding-bottom: calc(
|
|
env(safe-area-inset-bottom) + var(--footer-nav-height, 0px)
|
|
);
|
|
}
|
|
|
|
&__item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
flex-basis: 33%;
|
|
flex-shrink: 0;
|
|
flex-grow: 1;
|
|
padding-block: 0.75rem;
|
|
height: 100%;
|
|
position: relative;
|
|
|
|
&.--active {
|
|
.d-icon,
|
|
.d-button-label {
|
|
color: var(--quaternary);
|
|
}
|
|
}
|
|
&:hover,
|
|
&:focus {
|
|
.discourse-no-touch &,
|
|
.discourse-touch & {
|
|
background-color: var(--primary-low);
|
|
.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);
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|