fix typing notifs

This commit is contained in:
Matthew Hodgson 2015-10-23 11:19:13 +01:00
parent 7f65ba506b
commit 30b2156278
3 changed files with 10 additions and 10 deletions

View File

@ -190,17 +190,17 @@ limitations under the License.
}
.mx_RoomView_typingBar {
margin-top: 17px;
margin-left: 56px;
color: #818794;
margin-top: 10px;
margin-left: 54px;
color: #4a4a4a;
opacity: 0.5;
}
.mx_RoomView_typingBar img {
padding-left: 12px;
padding-right: 12px;
margin-left: -64px;
margin-top: -7px;
float: left;
.mx_RoomView_typingImage {
display: inline;
margin-left: -38px;
margin-top: -4px;
float: left;
}
.mx_RoomView .mx_MessageComposer {

Binary file not shown.

After

Width:  |  Height:  |  Size: 966 B

View File

@ -183,7 +183,7 @@ module.exports = React.createClass({
else if (typingString) {
statusBar = (
<div className="mx_RoomView_typingBar">
<img src="img/typing.png" width="40" height="40" alt=""/>
<div className="mx_RoomView_typingImage">...</div>
{typingString}
</div>
);