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