discourse/plugins/chat/assets/stylesheets/desktop/base-desktop.scss
Jarek Radosz 1defb9449b
UX: Move user-cards above composer (#27491)
There is currently only one scenario when both the composer and a user card would be present at the same time:

if you have the composer open and then you click on something outside it that triggers a card. Which implies intent to see the card (unobstructed by the composer 😉)

The reverse doesn't happen because opening the composer would close an existing user card.

In theory there's also displaying a user card by clicking on a mention in composer's preview but that functionality is currently broken (and this PR is a prerequisite 😉)

---

I changed `.user-card, .group-card` to `.fk-d-menu[data-identifier="card"]` because that regressed when we moved user cards to float-kit – they are nested inside `.fk-d-menu` so its `z-index` is now important (effectively the cards had `z-index: z("dropdown")` instead of `z("usercard")`)
2024-06-18 15:12:41 +02:00

125 lines
2.3 KiB
SCSS

.fk-d-menu[data-identifier="card"] {
z-index: z("usercard");
}
.full-page-chat {
&.teams-sidebar-on {
grid-template-columns: 1fr;
.chat-channel {
border-radius: var(--full-page-border-radius);
}
}
.chat-channel {
.chat-messages-container {
&.has-reply {
grid-template-columns: var(--message-left-width) 1fr;
}
.chat-user {
width: var(--message-left-width);
}
}
}
}
.chat-message-text {
img:not(.emoji):not(.avatar, .onebox-avatar-inline) {
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
&:hover {
cursor: pointer;
border-radius: var(--d-border-radius);
box-shadow: 0 2px 5px 0 rgba(var(--always-black-rgb), 0.1),
0 2px 10px 0 rgba(var(--always-black-rgb), 0.1);
}
}
}
.chat-message-container:not(.-user-info-hidden) {
.chat-message {
padding: 0.65rem 1rem 0.15rem;
}
}
.chat-message-container.-user-info-hidden {
.chat-message {
padding: 0.15rem 1rem;
}
.chat-time {
color: var(--secondary-medium);
flex-shrink: 0;
font-size: var(--font-down-2);
margin-top: 0.4em;
display: none;
width: var(--message-left-width);
}
&:hover {
.chat-message-left-gutter__bookmark {
display: none;
}
.chat-time {
display: block;
}
}
}
// Full Page Styling in Core
.has-full-page-chat:not(.discourse-sidebar) {
--max-chat-width: 1200px;
#main-outlet {
max-width: var(--max-chat-width);
padding: 0;
}
.full-page-chat {
border-right: 1px solid var(--primary-low);
border-left: 1px solid var(--primary-low);
}
@media screen and (max-width: var(--max-chat-width)) {
#main-outlet {
max-width: 100%;
padding: 0;
}
.full-page-chat {
border: none;
grid-template-columns: 250px 1fr;
}
}
}
// Full page styling with sidebar enabled
.discourse-sidebar.has-full-page-chat {
#main-outlet {
padding: 2em 0 0 0;
}
.full-page-chat.teams-sidebar-on {
.chat-channel {
border-radius: 0;
}
.chat-message {
padding-left: 1em;
}
.chat-messages-container .chat-message-deleted {
padding: 0.25em 1em;
}
}
}
.chat-form {
&__description.-autojoin,
&__description.-channel-wide-mentions {
max-width: 50%;
}
}