-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show group members in header #145
Changes from 7 commits
3ee4963
3300d6a
5b469fd
036c1d0
05c1ba5
898c74b
50c04c9
0004820
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,9 @@ | |
<eee-verification-level ng-if="ctrl.type == 'contact'" | ||
contact="ctrl.receiver"></eee-verification-level> | ||
</div> | ||
<div class="conversation-header-details-detail" ng-if="ctrl.type == 'group'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please add the whole list to the
|
||
<span>{{ ctrl.receiver.members | idToName }}</span> | ||
</div> | ||
</div> | ||
</div> | ||
<div id="conversation-is-private" ng-if="ctrl.locked"> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
|
||
.header-details { | ||
@include mouse-hand; | ||
|
||
overflow: hidden; | ||
|
||
& > *:first-child { | ||
font-weight: bold; | ||
|
@@ -29,6 +29,14 @@ | |
padding: 0; | ||
font-size: 120%; | ||
} | ||
|
||
.conversation-header-details-detail, .conversation-header-details-name { | ||
white-space: nowrap; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
max-width: 100%; | ||
display: inherit; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add |
||
} | ||
} | ||
|
||
#conversation-is-private { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
.filter
call should not be indented, to match the rest of the file.Also, the function should probably be named
idsToNames
, since it accepts multiple ids.