* PLT-4911 - Adding new target for OAuth help links

* PLT-4953 - Fixing styles for the unread messages indicator

* PLT-4901 - Fixing header modal overlap on mobile

* PLT-4916 - Swapping position of edit and delete
Этот коммит содержится в:
Asaad Mahmood
2016-12-12 20:17:20 +05:00
коммит произвёл Joram Wilander
родитель 30a10d35a8
Коммит 32842be309
18 изменённых файлов: 134 добавлений и 125 удалений

Просмотреть файл

@@ -21,7 +21,7 @@ export default class NewMessageIndicator extends React.Component {
}
}
render() {
let className = 'nav-pills__unread-indicator-bottom';
let className = 'new-messages__button';
if (this.state.visible > 0) {
className += ' visible';
}
@@ -31,20 +31,19 @@ export default class NewMessageIndicator extends React.Component {
return (
<div
className={className}
onClick={this.props.onClick}
onTransitionEnd={this.setRendered.bind(this)}
ref='indicator'
>
<span>
<div onClick={this.props.onClick}>
<i
className='fa fa-arrow-circle-o-down'
className='fa fa-angle-down'
/>
<FormattedMessage
id='posts_view.newMsgBelow'
defaultMessage='{count} new {count, plural, one {message} other {messages}} below'
values={{count: this.props.newMessages}}
/>
</span>
</div>
</div>
);
}