Skip to content

Commit

Permalink
UI fixes for group messaging
Browse files Browse the repository at this point in the history
  • Loading branch information
asaadmahmood committed Mar 1, 2017
1 parent 03da3ec commit f6a67ec
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapp/components/more_direct_channels.jsx
Expand Up @@ -265,7 +265,7 @@ export default class MoreDirectChannels extends React.Component {
note = (
<FormattedMessage
id='more_direct_channels.new_convo_note'
defaultMessage='This will start a new conversation. If you’re adding a lot of people, consider creating a private group instead.'
defaultMessage='. This will start a new conversation. If you’re adding a lot of people, consider creating a private group instead.'
/>
);
}
Expand Down
2 changes: 1 addition & 1 deletion webapp/components/multiselect/multiselect.jsx
Expand Up @@ -120,7 +120,7 @@ export default class MultiSelect extends React.Component {
numRemainingText = (
<FormattedMessage
id='multiselect.numRemaining'
defaultMessage='You can add {num, number} more'
defaultMessage='You can add {num, number} more. '
values={{
num: this.props.maxValues - this.props.values.length
}}
Expand Down
1 change: 1 addition & 0 deletions webapp/sass/components/_modal.scss
Expand Up @@ -633,6 +633,7 @@

.more-modal__list {
flex-grow: 500;
height: 1px;
}

.filter-button {
Expand Down
10 changes: 10 additions & 0 deletions webapp/sass/components/_multi-select.scss
Expand Up @@ -22,6 +22,16 @@
.Select-control {
border-radius: 1px;
}

.Select-value {
white-space: nowrap;
}

.Select-value-label {
overflow: hidden;
text-overflow: ellipsis;
width: calc(100% - 20px);
}
}

.multi-select__help {
Expand Down

0 comments on commit f6a67ec

Please sign in to comment.