parent
0620f08a7c
commit
68f2505996
4 changed files with 22 additions and 2 deletions
|
@ -51,7 +51,12 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{{> avatar }}
|
{{> avatar }}
|
||||||
<span class='conversation-title'>{{ title }}</span>
|
<span class='conversation-title'>
|
||||||
|
{{ title }}
|
||||||
|
{{ #number }}
|
||||||
|
<span class='conversation-number'>{{ number }}</span>
|
||||||
|
{{ /number }}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class='discussion-container'></div>
|
<div class='discussion-container'></div>
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
return {
|
return {
|
||||||
group: this.model.get('type') === 'group',
|
group: this.model.get('type') === 'group',
|
||||||
title: this.model.getTitle(),
|
title: this.model.getTitle(),
|
||||||
|
number: this.model.getNumber(),
|
||||||
avatar: this.model.getAvatar()
|
avatar: this.model.getAvatar()
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
|
@ -19,6 +19,13 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
|
-webkit-user-select: text;
|
||||||
|
}
|
||||||
|
.conversation-number {
|
||||||
|
padding-left: 5px;
|
||||||
|
line-height: 1em;
|
||||||
|
font-size: small;
|
||||||
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
.conversation {
|
.conversation {
|
||||||
|
|
|
@ -583,7 +583,14 @@ input.search {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
padding-left: 10px; }
|
padding-left: 10px;
|
||||||
|
-webkit-user-select: text; }
|
||||||
|
|
||||||
|
.conversation-number {
|
||||||
|
padding-left: 5px;
|
||||||
|
line-height: 1em;
|
||||||
|
font-size: small;
|
||||||
|
color: #999; }
|
||||||
|
|
||||||
.conversation {
|
.conversation {
|
||||||
height: calc(100% - 20px);
|
height: calc(100% - 20px);
|
||||||
|
|
Loading…
Reference in a new issue