File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
redisinsight/ui/src/pages/pub-sub/components/messages-list/MessagesList Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ const MessagesList = (props: Props) => {
130
130
< div className = { styles . channelAnchor } > { channel } </ div >
131
131
</ EuiToolTip >
132
132
</ div >
133
- < div className = { styles . message } ref = { rowRef } > { message } </ div >
133
+ < div className = { styles . message } ref = { rowRef } > < span > { message } </ span > </ div >
134
134
</ div >
135
135
)
136
136
}
Original file line number Diff line number Diff line change 12
12
.time {
13
13
color : var (--defaultGreenColor );
14
14
width : 150px ;
15
+ padding-right : 4px ;
15
16
}
16
17
17
18
.channel {
18
19
color : var (--euiColorMediumShade );
19
20
width : 220px ;
20
- max-height : 26px ;
21
21
overflow : hidden ;
22
22
white-space : nowrap ;
23
23
text-overflow : ellipsis ;
29
29
overflow : hidden ;
30
30
white-space : nowrap ;
31
31
text-overflow : ellipsis ;
32
+ display : inline-block ;
33
+ vertical-align : middle ;
32
34
}
33
35
34
36
.message {
35
37
width : calc (100% - 372px );
36
38
color : var (--htmlColor );
37
39
word-break : break-word ;
40
+
41
+ span {
42
+ display : inline-block ;
43
+ vertical-align : middle ;
44
+ }
38
45
}
39
46
40
47
.header {
You can’t perform that action at this time.
0 commit comments