File tree 1 file changed +12
-5
lines changed
1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change 23
23
var (--str-chat__quoted-message-inside-message-input-max-width ) +
24
24
calc (var (--str-chat__spacing-px ) * 50 )
25
25
);
26
+
27
+ /* The maximum number of lines displayed for quoted messages, set to "none" to turn off clamping */
28
+ --str-chat__quoted-message-line-clamp : 5 ;
26
29
}
27
30
28
31
.str-chat__message {
59
62
}
60
63
}
61
64
65
+ .str-chat__quoted-message-text-value {
66
+ overflow : hidden ;
67
+ display : -webkit-box ;
68
+ -webkit-line-clamp : var (--str-chat__quoted-message-line-clamp );
69
+ line-clamp : var (--str-chat__quoted-message-line-clamp );
70
+ -webkit-box-orient : vertical ;
71
+ }
72
+
62
73
.str-chat__message ,
63
74
.str-chat__quoted-message-preview {
64
75
@mixin chat-bubble-spacing {
65
76
padding : var (--str-chat__spacing-2 ) var (--str-chat__spacing-4 );
66
77
67
78
p {
79
+ white-space : pre-line ;
68
80
margin : 0 ;
69
81
}
70
82
}
165
177
.str-chat__message-text-inner {
166
178
@include utils .prevent-glitch-text-overflow ;
167
179
}
168
-
169
- p {
170
- white-space : pre-line ;
171
- }
172
180
}
173
181
}
174
182
}
357
365
}
358
366
}
359
367
360
-
361
368
.str-chat__message-inner {
362
369
.str-chat__message-options {
363
370
display : none ;
You can’t perform that action at this time.
0 commit comments