David Battersby d5b944f1de
FEATURE: add chat direct message button to user profile (#26135)
This change adds the chat direct message button to user profiles, similarly to how we use it within the user card.
2024-03-18 11:17:37 +08:00

38 lines
669 B
SCSS

.has-full-page-chat {
.global-notice,
.bootstrap-mode-notice {
display: none;
}
}
.admin-plugins {
[data-plugin-name="chat"] {
display: none;
}
}
.user-summary-page .details .controls ul {
display: flex;
flex-direction: column;
li:first-child {
order: -2;
}
li.user-profile-controls-outlet.chat-button {
order: -1;
}
}
// TODO (davidb): remove once consolidated chat notifications is complete
.user-stream .large-notifications .item {
&:has(.chat-message) {
display: none;
}
}
// TODO (davidb): remove once consolidated chat notifications is complete
.user-menu .quick-access-panel .chat-message {
display: none;
}