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

Binary file not shown.

After

Width:  |  Height:  |  Size: 966 B

View File

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