File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 23
23
class =" room-avatar"
24
24
:style =" { 'background-image': `url('${room.avatar}')` }"
25
25
></div >
26
- <div >
27
- <div class =" room-name" >{{ room.roomName }}</div >
28
- <div v-if =" typingUsers" class =" room-info" >
26
+ <div class = " text-ellipsis " >
27
+ <div class =" room-name text-ellipsis " >{{ room.roomName }}</div >
28
+ <div v-if =" typingUsers" class =" room-info text-ellipsis " >
29
29
{{ typingUsers }} {{ textMessages.IS_TYPING }}
30
30
</div >
31
- <div v-else class =" room-info" >
31
+ <div v-else class =" room-info text-ellipsis " >
32
32
{{ userStatus }}
33
33
</div >
34
34
</div >
@@ -631,16 +631,18 @@ export default {
631
631
.room-wrapper {
632
632
display : flex ;
633
633
align-items : center ;
634
+ min-width : 0 ;
634
635
height : 100% ;
635
636
width : 100% ;
636
637
padding : 0 16px ;
637
638
}
638
639
639
640
.info-wrapper {
640
- width : 100% ;
641
- height : 100% ;
642
641
display : flex ;
643
642
align-items : center ;
643
+ min-width : 0 ;
644
+ width : 100% ;
645
+ height : 100% ;
644
646
}
645
647
646
648
.toggle-button {
@@ -926,6 +928,8 @@ textarea {
926
928
.room-avatar {
927
929
height : 37px ;
928
930
width : 37px ;
931
+ min-height : 37px ;
932
+ min-width : 37px ;
929
933
}
930
934
}
931
935
Original file line number Diff line number Diff line change 48
48
background-color : #ddd ;
49
49
height : 42px ;
50
50
width : 42px ;
51
+ min-height : 42px ;
52
+ min-width : 42px ;
51
53
margin-right : 15px ;
52
54
border-radius : 50% ;
53
55
}
You can’t perform that action at this time.
0 commit comments