mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 20:53:44 +08:00
100 lines
2.1 KiB
SCSS
100 lines
2.1 KiB
SCSS
body.composer-open .chat-drawer-outlet-container {
|
|
bottom: 11px; // prevent height of grippie from obscuring ...is typing indicator
|
|
}
|
|
|
|
.chat-drawer-resizer {
|
|
position: absolute;
|
|
top: -5px;
|
|
width: 15px;
|
|
height: 15px;
|
|
z-index: z("composer", "content");
|
|
}
|
|
|
|
html:not(.rtl) {
|
|
.chat-drawer-resizer {
|
|
cursor: nwse-resize;
|
|
left: -5px;
|
|
}
|
|
}
|
|
|
|
html.rtl {
|
|
.chat-drawer-resizer {
|
|
cursor: nesw-resize;
|
|
right: -5px;
|
|
}
|
|
}
|
|
|
|
.chat-drawer-outlet-container {
|
|
// higher than timeline, lower than composer, lower than user card (bump up below)
|
|
z-index: z("usercard");
|
|
position: fixed;
|
|
right: var(--composer-right, 20px);
|
|
left: 0;
|
|
max-height: calc(100% - var(--header-offset) - 15px);
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
pointer-events: none !important;
|
|
bottom: 0;
|
|
box-sizing: border-box;
|
|
padding-bottom: var(--composer-height, 0);
|
|
transition: all 100ms ease-in;
|
|
transition-property: bottom, padding-bottom;
|
|
|
|
.rtl & {
|
|
left: var(--composer-right, 20px);
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
.chat-drawer {
|
|
pointer-events: auto;
|
|
align-self: flex-end;
|
|
width: 400px;
|
|
min-width: 250px !important; // important to override inline styles
|
|
max-width: calc(100% - var(--composer-right));
|
|
min-height: 300px !important; // important to override inline styles
|
|
|
|
.chat-drawer-container {
|
|
background: var(--secondary);
|
|
border: 1px solid var(--primary-low);
|
|
border-bottom: 0;
|
|
border-top-left-radius: var(--d-border-radius-large);
|
|
border-top-right-radius: var(--d-border-radius-large);
|
|
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.125);
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
&.is-expanded {
|
|
.chat-drawer-container {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
&:not(.is-expanded) {
|
|
min-height: 0 !important;
|
|
height: auto !important;
|
|
}
|
|
|
|
.chat-channel,
|
|
.chat-thread,
|
|
.chat-thread-list {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.chat-drawer-content {
|
|
@include chat-scrollbar();
|
|
box-sizing: border-box;
|
|
height: 100%;
|
|
min-height: 1px;
|
|
position: relative;
|
|
overflow-y: auto;
|
|
overscroll-behavior: contain;
|
|
}
|