2026-07-19 16:55:53 +00:00
|
|
|
.fullscreen-prompt-backdrop {
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
z-index: 10000;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
background: rgb(0 0 0 / 70%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fullscreen-prompt {
|
|
|
|
|
width: min(420px, 100%);
|
|
|
|
|
padding: 24px;
|
|
|
|
|
border-radius: 14px;
|
|
|
|
|
background: #1f1f1f;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
box-shadow: 0 20px 60px rgb(0 0 0 / 45%);
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
margin: 0 0 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
margin: 0 0 22px;
|
|
|
|
|
color: rgb(255 255 255 / 75%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fullscreen-prompt-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 10px 16px;
|
|
|
|
|
background: #4f8cff;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
|
|
|
|
&.secondary {
|
|
|
|
|
background: rgb(255 255 255 / 14%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-19 15:12:03 +00:00
|
|
|
.page-layout {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
2026-08-01 17:10:33 +00:00
|
|
|
.channel-list {
|
2026-07-19 15:12:03 +00:00
|
|
|
flex: 0 0 auto;
|
|
|
|
|
width: max-content;
|
|
|
|
|
min-width: 100px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-08-08 22:59:44 +00:00
|
|
|
.user-list {
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
width: max-content;
|
|
|
|
|
min-width: 100px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-19 15:12:03 +00:00
|
|
|
.chat {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
|
|
|
|
|
.chat-info {
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
padding: 5px 5px 2px 5px;
|
2026-08-08 22:59:44 +00:00
|
|
|
|
|
|
|
|
.chat-info-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
|
|
|
|
app-chat-info {
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-07-19 15:12:03 +00:00
|
|
|
}
|
2026-07-18 23:36:13 +00:00
|
|
|
|
2026-07-19 15:12:03 +00:00
|
|
|
.chat-box {
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
padding: 0 5px 0 5px;
|
|
|
|
|
min-height: 0;
|
2026-07-19 15:51:18 +00:00
|
|
|
box-sizing: border-box;
|
2026-07-19 15:12:03 +00:00
|
|
|
}
|
|
|
|
|
}
|
2026-07-18 23:36:13 +00:00
|
|
|
}
|