2023-04-11 15:03:12 +08:00
|
|
|
.mobile-view.has-full-page-chat {
|
2023-06-09 01:35:08 +08:00
|
|
|
&.disable-message-actions-touch {
|
2023-06-09 23:37:26 +08:00
|
|
|
.chat-message-actions {
|
2023-06-09 01:35:08 +08:00
|
|
|
> * {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-09 23:37:26 +08:00
|
|
|
#skip-link {
|
|
|
|
@include user-select(none);
|
|
|
|
}
|
|
|
|
|
2023-04-11 15:03:12 +08:00
|
|
|
#skip-link,
|
|
|
|
.d-header,
|
|
|
|
.chat-message-actions-mobile-outlet,
|
2023-04-25 16:23:03 +08:00
|
|
|
.chat-channel,
|
2023-04-11 15:03:12 +08:00
|
|
|
.chat-thread {
|
|
|
|
> * {
|
|
|
|
@include user-select(none);
|
|
|
|
}
|
|
|
|
}
|
2023-06-08 14:21:32 +08:00
|
|
|
|
|
|
|
.chat-message-container {
|
|
|
|
transition: transform 400ms;
|
|
|
|
transform: scale(1);
|
|
|
|
|
2023-06-16 17:36:43 +08:00
|
|
|
&.-active {
|
2023-06-08 14:21:32 +08:00
|
|
|
animation: scale-animation 400ms;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes scale-animation {
|
|
|
|
0% {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
transform: scale(0.95);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
}
|
2022-11-02 21:41:30 +08:00
|
|
|
}
|